| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-11-17 | Merge pull request #4826 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/revert-Implement-Ruby2.7-frozen-strings-from-Symbol-to_s Revert "Implement Ruby2.7's frozen strings from `Symbol#to_s`" | |||
| 2019-11-16 | Revert "Implement Ruby2.7's frozen strings from `Symbol#to_s`" | KOBAYASHI Shuji | |
| This feature was reverted from Ruby 2.7. | |||
| 2019-11-15 | Fix argument specs to `Kernel` | KOBAYASHI Shuji | |
| 2019-11-15 | Merge pull request #4823 from shuujii/fix-here-document-with-EOF | Yukihiro "Matz" Matsumoto | |
| Fix here document with EOF | |||
| 2019-11-14 | Fix here document with EOF | KOBAYASHI Shuji | |
| #### Before this patch: ``` $ bin/mruby -e 'p <<EOS 1 EOS' -e:4:0: can't find heredoc delimiter "EOS" anywhere before EOF -e:4:0: syntax error, unexpected $end, expecting tHEREDOC_END or tHD_STRING_PART or tHD_STRING_MID ``` #### After this patch (same as Ruby): ``` $ bin/mruby -e 'p <<EOS 1 EOS' "1\n" ``` | |||
| 2019-11-13 | Merge pull request #4821 from shuujii/use-mrb_intern_lit-if-possible-in-parse.y | Yukihiro "Matz" Matsumoto | |
| Use `mrb_intern_lit` if possible in `parse.y` | |||
| 2019-11-13 | Revert a76dc04 to resolve #4820 | Yukihiro "Matz" Matsumoto | |
| 2019-11-13 | Use `mrb_intern_lit` if possible in `parse.y` | KOBAYASHI Shuji | |
| 2019-11-13 | Merge pull request #4819 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-intern-instead-of-intern_cstr-if-possible-in-parse.y Use `intern` instead of `intern_cstr` if possible in `parse.y` | |||
| 2019-11-12 | Use `intern` instead of `intern_cstr` if possible in `parse.y` | KOBAYASHI Shuji | |
| 2019-11-12 | Merge pull request #4818 from shuujii/fix-argument-specs-to-Integer | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Integer` | |||
| 2019-11-11 | Fix argument specs to `Integer` | KOBAYASHI Shuji | |
| 2019-11-11 | Require `Regexp.escape` before interpolating `build_dir`; fix #4817 | Yukihiro "Matz" Matsumoto | |
| 2019-11-11 | Merge pull request #4816 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/defer-getting-caller_dir-until-needed-in-MRubyLoadGems-gem Defer getting `caller_dir` until needed in `MRuby::LoadGems#gem` | |||
| 2019-11-10 | Defer getting `caller_dir` until needed in `MRuby::LoadGems#gem` | KOBAYASHI Shuji | |
| 2019-11-10 | Merge pull request #4814 from shuujii/fix-argument-specs-to-IO | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `IO` | |||
| 2019-11-09 | Fix argument specs to `IO` | KOBAYASHI Shuji | |
| 2019-11-08 | Avoid unnecessary `Symbol#to_s` call; fix #4812 | Yukihiro "Matz" Matsumoto | |
| 2019-11-08 | Merge pull request #4813 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-dependency-from-mruby-hash-ext Remove unneeded dependency from `mruby-hash-ext` | |||
| 2019-11-08 | Remove unneeded dependency from `mruby-hash-ext` | KOBAYASHI Shuji | |
| 2019-11-08 | Fixed a bug in keyword arguments in block parameters; fix #4810 | Yukihiro "Matz" Matsumoto | |
| This is caused by incomplete fix in #4746 | |||
| 2019-11-08 | Avoid crashing of `Array#unshift`; fix #4808 | Yukihiro "Matz" Matsumoto | |
| On cases like `a.unshift(*a)`. | |||
| 2019-11-08 | Allow here-doc before closing parentheses; ref #4796 | Yukihiro "Matz" Matsumoto | |
| 2019-11-08 | Merge pull request #4811 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/clear-MRB_STR_SHARED-flag-in-mrb_str_modify_keep_ascii Clear `MRB_STR_SHARED` flag in `mrb_str_modify_keep_ascii`; close #4807 | |||
| 2019-11-07 | Clear `MRB_STR_SHARED` flag in `mrb_str_modify_keep_ascii`; close #4807 | KOBAYASHI Shuji | |
| 2019-11-06 | Merge pull request #4806 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/drop-test-dependency-from-mruby-hash-ext-to-mruby-enumerator Drop test dependency from `mruby-hash-ext` to `mruby-enumerator` | |||
| 2019-11-06 | Drop test dependency from `mruby-hash-ext` to `mruby-enumerator` | KOBAYASHI Shuji | |
| 2019-11-05 | Merge pull request #4805 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-test-that-depend-on-mruby-enumerator-from-mruby-array-ext Remove test that depend on `mruby-enumerator` from `mruby-array-ext` | |||
| 2019-11-05 | Remove test that depend on `mruby-enumerator` from `mruby-array-ext` | KOBAYASHI Shuji | |
| `Object.const_defined?(:Enumerator)` is always false because `mruby-enumerator` is not specified in `test_dependency`. I don't think this test is necessary. | |||
| 2019-11-05 | Merge pull request #4804 from shuujii/avoid-using-C++-style-comments-in-parse.y | Yukihiro "Matz" Matsumoto | |
| Avoid using C++ style comments (`//`) in `parse.y` [ci skip] | |||
| 2019-11-04 | Avoid using C++ style comments (`//`) in `parse.y` [ci skip] | KOBAYASHI Shuji | |
| 2019-11-03 | Merge pull request #4803 from shuujii/remove-unused-enum-in-mrb_cstr_to_dbl | Yukihiro "Matz" Matsumoto | |
| Remove unused enum in `mrb_cstr_to_dbl` | |||
| 2019-11-03 | Remove unused enum in `mrb_cstr_to_dbl` | KOBAYASHI Shuji | |
| 2019-11-02 | Merge pull request #4802 from shuujii/fix-argument-specs-to-Hash | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Hash` | |||
| 2019-11-02 | Fix argument specs to `Hash` | KOBAYASHI Shuji | |
| 2019-11-02 | Merge pull request #4801 from shuujii/fix-argument-specs-to-File | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `File` | |||
| 2019-11-01 | Fix argument specs to `File` | KOBAYASHI Shuji | |
| 2019-10-31 | Set `MRB_STR_ASCII` flag to some stringize methods | KOBAYASHI Shuji | |
| - `Fixnum#to_s`, `Fixnum#inspect` - `Float#to_s`, `Float#inspect` - `NilClass#to_s`, `NilClass#inspect` - `FalseClass#to_s`, `FalseClass#inspect` - `TrueClass#to_s`, `TrueClass#inspect` - `Time#to_s`, `Time#inspect` | |||
| 2019-10-31 | Merge pull request #4799 from shuujii/fix-argument-specs-to-Fiber | Yukihiro "Matz" Matsumoto | |
| Fix argument specs to `Fiber` | |||
| 2019-10-30 | Fix argument specs to `Fiber` | KOBAYASHI Shuji | |
| 2019-10-30 | Fix here-doc inside parens and brackets; fix #4796 | Yukihiro "Matz" Matsumoto | |
| 2019-10-30 | Fix file/directory name parameter for `git` command. | mimaki | |
| 2019-10-30 | Merge pull request #4798 from mimaki/fix-git-params-for-windows | Yukihiro "Matz" Matsumoto | |
| Fix `git` command parameter for Windows. | |||
| 2019-10-30 | Merge pull request #4797 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-Array-creation-in-Struct-_inspect Remove unneeded `Array` creation in `Struct#_inspect` | |||
| 2019-10-29 | Fix file/directory name parameter for `git` command. | mimaki | |
| 2019-10-29 | Remove unneeded `Array` creation in `Struct#_inspect` | KOBAYASHI Shuji | |
| 2019-10-28 | Merge pull request #4795 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-documents-about-Regexp-argument-from-string Remove documents about `Regexp` argument from `String#{[],[]=}` [ci skip] | |||
| 2019-10-28 | Remove documents about `Regexp` argument from `String#{[],[]=}` [ci skip] | KOBAYASHI Shuji | |
| 2019-10-27 | Merge pull request #4792 from shuujii/refine-String-split-document | Yukihiro "Matz" Matsumoto | |
| Refine `String#split` document | |||
| 2019-10-27 | Refine `String#split` document | KOBAYASHI Shuji | |
