| Age | Commit message (Expand) | Author |
| 2015-07-14 | mrb_get_args: allow A,H,s,z,a,d specifiers to take ! to accept nil. | Yukihiro "Matz" Matsumoto |
| 2015-07-13 | included_modules, origin fix | Corey Powell |
| 2015-07-13 | Bugfix, included_modules would include classes | Corey Powell |
| 2015-07-13 | Removed comment beside method_removed | Corey Powell |
| 2015-07-13 | Added Module#method_removed hook | Corey Powell |
| 2015-07-13 | Fixed Modules not being fully initialized before #initialize was called | Corey Powell |
| 2015-07-13 | Added changed check to the mrb_include_module | Corey Powell |
| 2015-07-13 | Remove some remnant debug code | Corey Powell |
| 2015-07-13 | Additional patches to make this work | Corey Powell |
| 2015-07-13 | Comment in a refactor to match MRI, but that fails 320 tests. | Blaž Hrastnik |
| 2015-07-13 | origin must be initialized | Blaž Hrastnik |
| 2015-07-13 | Expose insert position, which should be at origin for include and klass for | Blaž Hrastnik |
| 2015-07-13 | Implement Module#prepend. | Blaž Hrastnik |
| 2015-07-13 | allow '!' after 'S' specifier of mrb_get_args() that allow nil. | Yukihiro "Matz" Matsumoto |
| 2015-07-13 | refactor mrb_bob_missing to share raising NoMethodError code; fix #2878 | Yukihiro "Matz" Matsumoto |
| 2015-06-24 | Remove unnecessary backticks. | Franck Verrot |
| 2015-06-22 | Fixes #912 | Jared Breeden |
| 2015-05-29 | check if outer is a class or module | cremno |
| 2015-05-28 | remove unnecessary including of <ctype.h> | cremno |
| 2015-05-15 | remove mrb_define_method_vm() function | cremno |
| 2014-12-12 | Fix crash if #inspect does not return a string value | sdottaka |
| 2014-11-19 | separate mrb_notimplement() and mrb_notimplement_m(); ref #2636 | Yukihiro "Matz" Matsumoto |
| 2014-11-17 | fix mrb_notimplement typo | Robert Mosolgo |
| 2014-11-17 | Implement C API mrb_notimplement | ksss |
| 2014-09-21 | Fix `mrb_get_args` arguments types found by mruby-clang-plugin. | take_cheeze |
| 2014-09-19 | code reduce by using mrb_get_args("n") | Yukihiro "Matz" Matsumoto |
| 2014-09-19 | `Module#const_defined?` to take second optional argument as CRuby; fix #2593 | Yukihiro "Matz" Matsumoto |
| 2014-09-19 | change class argument of mrb_const_defined_at from `struct RClass*` to `mrb_v... | Yukihiro "Matz" Matsumoto |
| 2014-09-03 | Merge pull request #2582 from iij/pr-attr-accessor-save-arena | Yukihiro "Matz" Matsumoto |
| 2014-09-03 | save and restore arena index to prevent arena overflow. | Tomoyuki Sahara |
| 2014-09-03 | Use mrb_str_cat_lit() instead of mrb_str_cat_cstr() for string-literals. | Tatsuhiko Kubo |
| 2014-09-02 | implement attr_reader and attr_writer in C; use cfunc closure to speed-up | Yukihiro "Matz" Matsumoto |
| 2014-08-29 | Fix mismatches for MRB_API declarations. | Tatsuhiko Kubo |
| 2014-08-21 | changed to call check_cv_name_str in check_cv_name_sym and adjust indent | kkkkkt |
| 2014-08-20 | Remove empty lines. | Tatsuhiko Kubo |
| 2014-08-20 | Use specified macro(NULL) instead of magic-number. | Tatsuhiko Kubo |
| 2014-08-16 | use mrb_false_value instead of mrb_bool_value | go kikuta |
| 2014-08-16 | refactor class.c methods (fix indent, remove unneed temp value. ) | go kikuta |
| 2014-08-04 | add MRB_API modifiers to mruby API functions | Yukihiro "Matz" Matsumoto |
| 2014-07-18 | add Module#module_function | dreamedge |
| 2014-07-17 | avoid infinite recursion when error was happened in #inspect; fix #2474 | Yukihiro "Matz" Matsumoto |
| 2014-07-09 | Clean up value.h and mrb_value boxing | David Turnbull |
| 2014-06-15 | Proc class define before a first method | ksss |
| 2014-06-02 | Implement `NoMethodError#args`. | take_cheeze |
| 2014-05-23 | Should not call inherited method | ksss |
| 2014-05-22 | call Class#initialize from Class.new; ref ISO 15.2.3.3.1 | Yukihiro "Matz" Matsumoto |
| 2014-05-22 | allocate object after mrb_get_args() | Yukihiro "Matz" Matsumoto |
| 2014-05-22 | Merge pull request #2304 from ksss/class-new | Yukihiro "Matz" Matsumoto |
| 2014-05-22 | Class.new do not call `class_eval' | ksss |
| 2014-05-21 | Module#initialize set created object | ksss |