- 16 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Revert "Implement Ruby2.7's frozen strings from `Symbol#to_s`"
-
KOBAYASHI Shuji authored
This feature was reverted from Ruby 2.7.
-
- 14 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix here document with EOF
-
KOBAYASHI Shuji authored
#### 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" ```
-
- 13 Nov, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use `mrb_intern_lit` if possible in `parse.y`
-
Yukihiro "Matz" Matsumoto authored
-
KOBAYASHI Shuji authored
-
- 12 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use `intern` instead of `intern_cstr` if possible in `parse.y`
-
KOBAYASHI Shuji authored
-
- 11 Nov, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix argument specs to `Integer`
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
- 10 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Defer getting `caller_dir` until needed in `MRuby::LoadGems#gem`
-
KOBAYASHI Shuji authored
-
- 09 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix argument specs to `IO`
-
KOBAYASHI Shuji authored
-
- 08 Nov, 2019 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Remove unneeded dependency from `mruby-hash-ext`
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
This is caused by incomplete fix in #4746
-
Yukihiro "Matz" Matsumoto authored
On cases like `a.unshift(*a)`.
-
Yukihiro "Matz" Matsumoto authored
-
- 07 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Clear `MRB_STR_SHARED` flag in `mrb_str_modify_keep_ascii`; close #4807
-
KOBAYASHI Shuji authored
-
- 06 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Drop test dependency from `mruby-hash-ext` to `mruby-enumerator`
-
KOBAYASHI Shuji authored
-
- 05 Nov, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #4805 from shuujii/remove-test-that-depend-on-mruby-enumerator-from-mruby-array-ext Remove test that depend on `mruby-enumerator` from `mruby-array-ext`
-
KOBAYASHI Shuji authored
`Object.const_defined?(:Enumerator)` is always false because `mruby-enumerator` is not specified in `test_dependency`. I don't think this test is necessary.
-
Yukihiro "Matz" Matsumoto authored
Avoid using C++ style comments (`//`) in `parse.y` [ci skip]
-
- 04 Nov, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 03 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Remove unused enum in `mrb_cstr_to_dbl`
-
KOBAYASHI Shuji authored
-
- 02 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix argument specs to `Hash`
-
KOBAYASHI Shuji authored
-
- 01 Nov, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix argument specs to `File`
-
KOBAYASHI Shuji authored
-
- 31 Oct, 2019 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Fix argument specs to `Fiber`
-
- 30 Oct, 2019 2 commits
-
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
- 29 Oct, 2019 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Fix `git` command parameter for Windows.
-