- 26 Jan, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Avoid a side effect when run Rake without execution of tasks
-
Yukihiro "Matz" Matsumoto authored
Refine error message for time interval
-
KOBAYASHI Shuji authored
Time interval value can be zero, and float (in `Kernel#sleep`)
-
- 25 Jan, 2019 7 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use `assert_raise` and `assert_nothing_raised` in `mruby-sleep` tests
-
Yukihiro "Matz" Matsumoto authored
Remove definition of `assert_nothing_raised` in `IO` test
-
Yukihiro "Matz" Matsumoto authored
Use assertion methods in `File` test
-
Yukihiro "Matz" Matsumoto authored
Remove unused file for `mruby-io` test
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
-
- 24 Jan, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Remove definition of `Kernel#sprintf` in `mruby-print`
-
Yukihiro "Matz" Matsumoto authored
Remove redundant `NULL` check for `mrb_malloc`
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
-
- 23 Jan, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
[ci skip] Remove no meaning statement in `bm_app_lc_fizzbuzz.rb`
-
KOBAYASHI Shuji authored
-
- 21 Jan, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 20 Jan, 2019 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Remove `.gitkeep` files
-
- 19 Jan, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 18 Jan, 2019 4 commits
-
-
KOBAYASHI Shuji authored
Avoid directory creation when run `rake -T` etc.
-
Yukihiro "Matz" Matsumoto authored
Remove special treatments for `MRB_WITHOUT_FLOAT` in build scripts
-
Yukihiro "Matz" Matsumoto authored
Avoid runtime evaluation for `MRB_WITHOUT_FLOAT`
-
Yukihiro "Matz" Matsumoto authored
Fix assertion name for `Numeric#**` test
-
- 17 Jan, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 16 Jan, 2019 2 commits
-
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
-
- 15 Jan, 2019 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix coercing for first step counter in `Numeric#step`
-
KOBAYASHI Shuji authored
Before: a=[]; 7.step(4, -3.0) { |c| a << c }; p a #=> [7, 4.0] After / Ruby: a=[]; 7.step(4, -3.0) { |c| a << c }; p a #=> [7.0, 4.0]
-
Yukihiro "Matz" Matsumoto authored
[ci skip] Sort `.gitignore`
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Build fails when set `conf.build_dir=<rel path>` and `conf.enable_cxx_exception`
-
Yukihiro "Matz" Matsumoto authored
Ignore compiler temporary files (for `-save-temps` flag)
-
- 14 Jan, 2019 4 commits
-
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Use `%g` instead of `%e` for float representation in dump format
-
Yukihiro "Matz" Matsumoto authored
Improve compatibility to CRuby for `Float#to_s`
-
dearblue authored
-
- 13 Jan, 2019 2 commits
-
-
KOBAYASHI Shuji authored
For conforming C standard.
-
KOBAYASHI Shuji authored
Bfore: Float::INFINITY.to_s #=> "inf" 50.0.to_s #=> "50" 1e20.to_s #=> "1e+20" After / CRuby: Float::INFINITY.to_s #=> "Infinity" 50.0.to_s #=> "50.0" 1e20.to_s #=> "1.0e+20"
-
- 12 Jan, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use `__send__` instead of `send`; ref #4207
-
KOBAYASHI Shuji authored
-