- 05 Jun, 2020 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Merge mruby 2.1.1
-
Hiroshi Mimaki authored
-
- 04 Jun, 2020 9 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
- `compile_flags.txt' - `compile_commands.json`
-
Yukihiro "Matz" Matsumoto authored
-
Hiroshi Mimaki authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Align RIStruct data for rational/complex
-
Yukihiro "Matz" Matsumoto authored
-
- 03 Jun, 2020 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
dearblue authored
-
Yukihiro "Matz" Matsumoto authored
Set `MRB_STR_ASCII` flag to some stringize methods
-
- 02 Jun, 2020 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
dearblue authored
- It can now deal with operands in the range of `OP_EXT*`. - It can now call the same method as the variable name without arguments. ```ruby def a "Safe!" end a = "Auto!" eval "a()" # call method `a` ```
-
- 01 Jun, 2020 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Get local variable names from orphan block; ref #3710
-
Yukihiro "Matz" Matsumoto authored
Fix float constant redefinition warnings
-
Rory OConnell authored
-
- 31 May, 2020 1 commit
-
-
dearblue authored
-
- 28 May, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 27 May, 2020 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #5011 from shuujii/respect-CFLAGS-CXXFLAGS-and-LDFLAGS-env-vars-in-appveyor_config.rb Respect CFLAGS, CXXFLAGS, and LDFLAGS env vars in appveyor_config.rb
-
KOBAYASHI Shuji authored
[skip travis]
-
Yukihiro "Matz" Matsumoto authored
-
- 26 May, 2020 7 commits
-
-
Yukihiro "Matz" Matsumoto authored
We made it `64` which should be big enough: - Format modifier: 4 characters max - Maximum width: 19 digits max - Period between width and precision: 1 character - Maximum precision: 19 digits max - Format specifier: 1 character - NUL terminator: 1 byte - Total: 45 < 64
-
Yukihiro "Matz" Matsumoto authored
Detect newly added mrbgems when re-creating gem_init.c
-
Kondo Uchio authored
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #5009 from shuujii/removed-Bison-related-settings-from-.travis.yml-and-appveyor.yml Removed Bison related settings from `.travis.yml` and `appveyor.yml`
-
Yukihiro "Matz" Matsumoto authored
Revert part of "Start GitHub Actions" (4ce3997c)
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
Because some changes have been overridden.
-
- 25 May, 2020 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Add `y.tab.c` to remove Bison from build dependencies; ref 4ce3997c
-
KOBAYASHI Shuji authored
I sometimes see Bison related problems in setting up build environments. Therefore to remove Bison from build time dependencies, add `y.tab.c` generated by Bison to the repository. The reduction of dependency at build time also reduces the labor and time for setup and installation in CI. In addition, a path in `#line` directive is converted to a relative path so that its path is constant regardless of development environments.
-
- 24 May, 2020 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
`Windows-MinGW` and `Windows-VC` also requires updates.
-
Takeshi Watanabe authored
-
- 23 May, 2020 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Do not destruct rest arguments for __send__
-
Yusuke Endoh authored
Formerly, `__send__(*args)` modified `args` with `Array#shift`. This bug affects optcarrot. This changeset avoids the array destruction by using `args = args[1, len-1]`.
-