| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-16 | Fix cvar, ivar, const and method can be removed to frozen object | KOBAYASHI Shuji | |
| 2019-06-15 | Fix index in error message of `Struct#[]` | KOBAYASHI Shuji | |
| Before this patch: $ bin/mruby -e 'Struct.new(:a,:b).new[-3]' #=> offset -1 too small for struct(size:2) (IndexError) After this patch (same as Ruby): $ bin/mruby -e 'Struct.new(:a,:b).new[-3]' #=> offset -3 too small for struct(size:2) (IndexError) | |||
| 2019-06-14 | Merge pull request #4506 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-a-meaningless-branch-condition-in-mruby-struct Remove a meaningless branch condition in `mruby-struct` | |||
| 2019-06-14 | Remove a meaningless branch condition in `mruby-struct` | KOBAYASHI Shuji | |
| The following branch condition is always true: // mrbgems/mruby-struct/src/struct.c:187 in make_struct_define_accessors() if (is_local_id(mrb, name) || is_const_id(mrb, name)) { | |||
| 2019-06-14 | Merge pull request #4505 from shuujii/fix-class-name-validation-in-Struct.new | Yukihiro "Matz" Matsumoto | |
| Fix class name validation in `Struct.new` | |||
| 2019-06-13 | Fix class name validation in `Struct.new` | KOBAYASHI Shuji | |
| Before this patch: $ bin/mruby -e 'p Struct.new("A-")' #=> Struct::"A-" After this patch: $ bin/mruby -e 'p Struct.new("A-")' #=> NameError: identifier A- needs to be constant | |||
| 2019-06-13 | Merge pull request #4500 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/kernel-global_variables-should-not-include-undefined-gvar `Kernel#global_variables` should not include undefined `$1`-`$9` | |||
| 2019-06-13 | Merge pull request #4503 from shuujii/fix-typo-in-String-setbyte-error-message | Yukihiro "Matz" Matsumoto | |
| Fix typo in `String#setbyte` error message | |||
| 2019-06-12 | Fix typo in `String#setbyte` error message | KOBAYASHI Shuji | |
| 2019-06-12 | Adjust allocation size in `mrb_id_attrset()` (`mruby-struct`) | KOBAYASHI Shuji | |
| 2019-06-11 | Merge pull request #4501 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-redundant-colon-in-Proc-inspect-mruby-proc-ext Remove redundant colon in `Proc#inspect` (`mruby-proc-ext`) | |||
| 2019-06-11 | Remove redundant colon in `Proc#inspect` (`mruby-proc-ext`) | KOBAYASHI Shuji | |
| Before this patch: $ bin/mruby -e 'p proc{}' #=> #<Proc:0x7fd5eb8206d0@-e::1> After this patch: $ bin/mruby -e 'p proc{}' #=> #<Proc:0x7fd5eb8206d0@-e:1> | |||
| 2019-06-11 | Merge pull request #4496 from dearblue/replace-obsolete | Yukihiro "Matz" Matsumoto | |
| Replace obsolete macros | |||
| 2019-06-10 | `Kernel#global_variables` should not include undefined `$1`-`$9` | KOBAYASHI Shuji | |
| - They are not include in Ruby. - Appear in duplicate when `$1`-`$9` are defined. | |||
| 2019-06-10 | Merge pull request #4495 from shuujii/remove-Kernel-global_variables-from-core | Yukihiro "Matz" Matsumoto | |
| Remove `Kernel#global_variables` from core | |||
| 2019-06-10 | Merge pull request #4494 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/clarify-mruby-kernel-object-ext-gem-summary Clarify `mruby-(kernel|object)-ext` gem summary; ref 8e637bdd [ci skip] | |||
| 2019-06-10 | Merge pull request #4499 from shuujii/fix-missing-assertions-in-test-t-syntax.rb | Yukihiro "Matz" Matsumoto | |
| Fix missing assertions in `test/t/syntax.rb` | |||
| 2019-06-09 | Fix missing assertions in `test/t/syntax.rb` | KOBAYASHI Shuji | |
| 2019-06-09 | Merge pull request #4497 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-Check-the-usage-of-a-NUL-character-test Remove "Check the usage of a NUL character" test | |||
| 2019-06-08 | Remove "Check the usage of a NUL character" test | KOBAYASHI Shuji | |
| Because there is not assertion in this test and NUL character literal is used in other tests. | |||
| 2019-06-07 | Replace obsolete macros | dearblue | |
| 2019-06-07 | Remove `Kernel#global_variables` from core | KOBAYASHI Shuji | |
| This method is defined in `mruby-metaprog` gem. | |||
| 2019-06-06 | Clarify `mruby-(kernel|object)-ext` gem summary; ref 8e637bdd [ci skip] | KOBAYASHI Shuji | |
| 2019-06-05 | Drop precisions for rational when big numbers | dearblue | |
| 2019-06-05 | Fix build error if `struct mrb_rational` is bigger than `RIStruct` | dearblue | |
| In that case, to be switched implementation with `RData`. It is based to "complex". | |||
| 2019-06-05 | Fix not frozen in `Complex` method by `RData` | dearblue | |
| Object allocation was separated, and initialization was made common. | |||
| 2019-06-05 | Fix memory leak in `Complex` method by `RData` | dearblue | |
| If `Data_Wrap_Struct()` raises a `NoMemoryError` exception, it will leak memory if it does `mrb_malloc()` first. | |||
| 2019-06-05 | Merge pull request #4491 from shuujii/fix-missing-assertions-in-test-t-module.rb | Yukihiro "Matz" Matsumoto | |
| Fix missing assertions in `test/t/module.rb` | |||
| 2019-06-05 | Fix missing assertions in `test/t/module.rb` | KOBAYASHI Shuji | |
| 2019-06-05 | Merge pull request #4489 from shuujii/fIx-typo-in-mrblib-range.rb | Yukihiro "Matz" Matsumoto | |
| Fix typo in `mrblib/range.rb` [ci skip] | |||
| 2019-06-05 | Merge pull request #4490 from dearblue/explicit-cast | Yukihiro "Matz" Matsumoto | |
| Need explicit cast for C++ | |||
| 2019-06-04 | Need explicit cast for C++ | dearblue | |
| 2019-06-04 | Fix typo in `mrblib/range.rb` [ci skip] | KOBAYASHI Shuji | |
| 2019-06-02 | Merge pull request #4485 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-missing-assertions-in-mruby-objectspace-test Fix missing assertions in `mruby-objectspace` test | |||
| 2019-06-02 | Fix missing assertions in `mruby-objectspace` test | KOBAYASHI Shuji | |
| 2019-06-01 | Merge pull request #4482 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/comment-out-the-empty-Array-bsearch_index-test Comment out the empty `Array#bsearch_index` test | |||
| 2019-05-31 | Comment out the empty `Array#bsearch_index` test | KOBAYASHI Shuji | |
| 2019-05-30 | Merge pull request #4481 from shuujii/fix-missing-assertions-in-mruby-fiber-test | Yukihiro "Matz" Matsumoto | |
| Fix missing assertions in `mruby-fiber` test | |||
| 2019-05-30 | Fix missing assertions in `mruby-fiber` test | KOBAYASHI Shuji | |
| 2019-05-30 | Fix inverted compilation condition; fix #4478 | Yukihiro "Matz" Matsumoto | |
| 2019-05-29 | Merge pull request #4477 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/kernel-itself-should-not-be-a-module-function `Kernel#itself` should not be a module function | |||
| 2019-05-29 | `Kernel#itself` should not be a module function | KOBAYASHI Shuji | |
| 2019-05-29 | Slightly simplify `Rational#==`; ref #4475 | Yukihiro "Matz" Matsumoto | |
| 2019-05-29 | Add `mrb_alloca` again; ref #4470 | Yukihiro "Matz" Matsumoto | |
| This time, the allocated memory comes from the string object, which is referenced from GC arena. The memory region will be reclaimed when the C function called from VM is terminated, or the GC arena is restored. | |||
| 2019-05-29 | Merge pull request #4475 from shuujii/fix-Rational-eq-Complex | Yukihiro "Matz" Matsumoto | |
| Fix `Rational#==(Complex)` | |||
| 2019-05-29 | Merge pull request #4476 from shuujii/fix-missing-assertions-in-mruby-pack-test | Yukihiro "Matz" Matsumoto | |
| Fix missing assertions in `mruby-pack` test | |||
| 2019-05-28 | Fix missing assertions in `mruby-pack` test | KOBAYASHI Shuji | |
| 2019-05-28 | Merge pull request #4474 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-undefined.equal-obj2-instead-of-obj2-eq-undefined-in-assert.rb Use `$undefined.equal?(obj2)` instead of `obj2 == $undefined` in `ass… | |||
| 2019-05-27 | Merge pull request #4473 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/make-some-functions-static-in-mrbgems-mruby-metaprog-src-metaprog.c Make some functions static in `mrbgems/mruby-metaprog/src/metaprog.c` | |||
| 2019-05-27 | Use `$undefined.equal?(obj2)` instead of `obj2 == $undefined` in `assert.rb` | KOBAYASHI Shuji | |
| In case `obj2.==` is broken. | |||
