| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-07-29 | Merge branch 'udzura-move-task-class-definitions' | Yukihiro "Matz" Matsumoto | |
| 2017-07-29 | Merge branch 'move-task-class-definitions' of ↵ | Yukihiro "Matz" Matsumoto | |
| https://github.com/udzura/mruby into udzura-move-task-class-definitions | |||
| 2017-07-29 | Merge pull request #3757 from christopheraue/module_const_get_class_path | Yukihiro "Matz" Matsumoto | |
| Extended Module#const_get to support class paths | |||
| 2017-07-29 | Merge pull request #3755 from christopheraue/array_bsearch_index | Yukihiro "Matz" Matsumoto | |
| Added Array#bsearch_index | |||
| 2017-07-29 | Merge pull request #3756 from christopheraue/fix_mod_include_ret_val | Yukihiro "Matz" Matsumoto | |
| Fixed return value of Module#include and #prepend | |||
| 2017-07-28 | Added Array#bsearch_index | Christopher Aue | |
| 2017-07-28 | Refactored Array#bsearch | Christopher Aue | |
| 2017-07-28 | Extended Module#const_get to support class paths | Christopher Aue | |
| 2017-07-28 | Added mrb_str_index to the mrb API | Christopher Aue | |
| 2017-07-28 | Fixed return value of Module#include and #prepend | Christopher Aue | |
| 2017-07-28 | Tested Array#bsearch more thoroughly | Christopher Aue | |
| 2017-07-27 | Rename `MRB_SEGMENT_SIZE` to `MRB_IV_SEGMENT_SIZE`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-27 | Always use `MRB_USE_IV_SEGLIST`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-27 | Embed small size array elements in the heap. | Yukihiro "Matz" Matsumoto | |
| It reduces the memory consumption and sometimes improve the performance as well. For example, the consumed memory size of `bench/bm_ao_render.rb` is reduced from 1.2GB to 1GB, and its total execution time become 18.795 sec from 22.229 sec. | |||
| 2017-07-27 | Remove loop from `OP_POPERR`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-26 | `(0).div(0.0)` should be NaN; fix #3754 | Yukihiro "Matz" Matsumoto | |
| 2017-07-25 | `(0.0).div(0)` should not be infinity; fix #3753 | Yukihiro "Matz" Matsumoto | |
| 2017-07-25 | `0/0` should not be infinity; fix #3752 | Yukihiro "Matz" Matsumoto | |
| 2017-07-25 | Reimplement sort method to reduce array copying. | Yukihiro "Matz" Matsumoto | |
| 2017-07-24 | Should not update `@objs` from mruby-bin-mruby mrbgem.rake; fix #3751 | Yukihiro "Matz" Matsumoto | |
| 2017-07-24 | Clear mrb_callinfo struct by zero initializer. | Yukihiro "Matz" Matsumoto | |
| 2017-07-24 | Initialize potentially uninitialized local variable. | Yukihiro "Matz" Matsumoto | |
| 2017-07-21 | Need to unshare env on OP_R_BREAK too. | Yukihiro "Matz" Matsumoto | |
| 2017-07-21 | Move NULL check to `mrb_env_unshare()`; ref #3750 | Yukihiro "Matz" Matsumoto | |
| 2017-07-21 | Should not raise `LocalJumpError` on funcall'ed frame; fix #3750 | Yukihiro "Matz" Matsumoto | |
| 2017-07-20 | Merge pull request #3749 from christopheraue/fix_spec_rbfiles | Yukihiro "Matz" Matsumoto | |
| Fixed setting custom rbfiles in gemspec | |||
| 2017-07-20 | Need to patch `OP_GETUPVAR` and `OP_SETUPVAR`; fix #3732 | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Fixed setting custom rbfiles in gemspec | Christopher Aue | |
| 2017-07-19 | Avoid C undefined behavior of division by zero; close #3745 | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Merge pull request #3746 from christopheraue/mod_singleton_class_p | Yukihiro "Matz" Matsumoto | |
| Implemented Module#singleton_class? | |||
| 2017-07-19 | Merge branch 'christopheraue-const_set_mod_to_s' | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Avoid constant-set duplication; ref #3747 | Yukihiro "Matz" Matsumoto | |
| 2017-07-19 | Merge branch 'const_set_mod_to_s' of https://github.com/christopheraue/mruby ↵ | Yukihiro "Matz" Matsumoto | |
| into christopheraue-const_set_mod_to_s | |||
| 2017-07-18 | Fixed Module#to_s and #name for #const_set modules | Christopher Aue | |
| 2017-07-18 | implemented Module#singleton_class? | Christopher Aue | |
| 2017-07-18 | Simplify `mrb_gc_arena_restore()` to reduce overhead. | Yukihiro "Matz" Matsumoto | |
| It will no longer shrink arena region. Instead `vm.c` uses a static function `mrb_gc_arena_shrink()` to shrink. | |||
| 2017-07-17 | Merge pull request #3743 from christopheraue/sprintf_d_tests | Yukihiro "Matz" Matsumoto | |
| added tests for #3736 | |||
| 2017-07-17 | Merge pull request #3742 from christopheraue/iter_exp_tests | Yukihiro "Matz" Matsumoto | |
| added basic tests for while/until/break/next | |||
| 2017-07-16 | added tests for #3736 | Christopher Aue | |
| 2017-07-16 | added basic tests for while/until/break/next | Christopher Aue | |
| 2017-07-15 | Add `Hash#transform_keys!` and `Hash#transform_values`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-15 | Use `keys.each` instead of unstable `each_keys`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-14 | Remove duplication in `mruby-hash-ext` test. | Yukihiro "Matz" Matsumoto | |
| 2017-07-14 | Avoid duplicated width filling for sprintf `%d` specifier; fix #3736 | Yukihiro "Matz" Matsumoto | |
| 2017-07-14 | Add `Hash#transform_{keys,values}` to `mruby-hash-ext`. | Yukihiro "Matz" Matsumoto | |
| 2017-07-13 | Use `floor()` to implement `round()` on WIN32 platform. | Yukihiro "Matz" Matsumoto | |
| This change was suggested by Akira Kakuto. | |||
| 2017-07-13 | Define `round()` only on WIN32 platform; fix #3741 | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | `while`|`until` should have the value from `break`; fix #3735 | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Avoid float operation to shrink arena buffer size. | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Add `inline` modifier to `cipush()` and `cipop()` functions. | Yukihiro "Matz" Matsumoto | |
