| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-02-02 | Merge pull request #4258 from shuujii/extend-only-when-necessary | Yukihiro "Matz" Matsumoto | |
| Extend only when necessary in `lib/mruby-core-ext.rb` | |||
| 2019-02-02 | Extend only when necessary in `lib/mruby-core-ext.rb` | KOBAYASHI Shuji | |
| 2019-01-31 | Merge pull request #4254 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-dup-in-enumerator-initialize Remove unneeded `dup` in `Enumerator#initialize` | |||
| 2019-01-30 | Remove unneeded `dup` in `Enumerator#initialize` | KOBAYASHI Shuji | |
| 2019-01-29 | Merge pull request #4253 from shuujii/remove-unused-macro-in-string | Yukihiro "Matz" Matsumoto | |
| Remove unused macro in `src/string.c` | |||
| 2019-01-29 | Remove unused macro in `src/string.c` | KOBAYASHI Shuji | |
| 2019-01-28 | Merge pull request #4252 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/class-expr-with-empty-body-should-return-nil `class`/`module` expression with empty body should return `nil` | |||
| 2019-01-28 | `class`/`module` expression with empty body should return `nil` | KOBAYASHI Shuji | |
| Before: p(class A end) #=> A p(class << self; end) #=> #<Class:#<Object:0x7fdc3880e420>> p(module B end) #=> B After/Ruby: p(class A end) #=> nil p(class << self; end) #=> nil p(module B end) #=> nil | |||
| 2019-01-27 | Merge pull request #4249 from takkaw/fix_time_carry_up_and_down | Yukihiro "Matz" Matsumoto | |
| fix Time about carry-up and carry-down | |||
| 2019-01-26 | fix Time about carry-up and carry-down | takkaw | |
| 2019-01-26 | Merge pull request #4241 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-tests-for-string-reverse-with-mrb-utf8-string Fix tests for `String#reverse` with `MRB_UTF8_STRING` | |||
| 2019-01-26 | Merge pull request #4237 from dearblue/fix-memleak-Data_Wrap_Struct | Yukihiro "Matz" Matsumoto | |
| Fix memory leak `sval` when out of memory in `Data_Wrap_Struct()` | |||
| 2019-01-26 | Merge pull request #4235 from shuujii/avoid-side-effect-when-run-rake | Yukihiro "Matz" Matsumoto | |
| Avoid a side effect when run Rake without execution of tasks | |||
| 2019-01-26 | Merge pull request #4248 from shuujii/refine-error-message-for-time-interval | Yukihiro "Matz" Matsumoto | |
| Refine error message for time interval | |||
| 2019-01-26 | Refine error message for time interval | KOBAYASHI Shuji | |
| Time interval value can be zero, and float (in `Kernel#sleep`) | |||
| 2019-01-25 | Merge pull request #4240 from shuujii/refactor-sleep-test | Yukihiro "Matz" Matsumoto | |
| Use `assert_raise` and `assert_nothing_raised` in `mruby-sleep` tests | |||
| 2019-01-25 | Merge pull request #4245 from shuujii/remove-assert_nothing_raised-in-io-test | Yukihiro "Matz" Matsumoto | |
| Remove definition of `assert_nothing_raised` in `IO` test | |||
| 2019-01-25 | Merge pull request #4246 from shuujii/use-assertion-methods-in-file-test | Yukihiro "Matz" Matsumoto | |
| Use assertion methods in `File` test | |||
| 2019-01-25 | Merge pull request #4247 from shuujii/remove-unused-file-for-mruby-io-test | Yukihiro "Matz" Matsumoto | |
| Remove unused file for `mruby-io` test | |||
| 2019-01-25 | Remove unused file for `mruby-io` test | KOBAYASHI Shuji | |
| 2019-01-25 | Use assertion methods in `File` test | KOBAYASHI Shuji | |
| 2019-01-25 | Remove definition of `assert_nothing_raised` in `IO` test | KOBAYASHI Shuji | |
| 2019-01-25 | Merge pull request #4243 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-definition-of-sprintf-in-mruby-print Remove definition of `Kernel#sprintf` in `mruby-print` | |||
| 2019-01-24 | Merge pull request #4244 from shuujii/remove-redundant-null-check-for-mrb_malloc | Yukihiro "Matz" Matsumoto | |
| Remove redundant `NULL` check for `mrb_malloc` | |||
| 2019-01-24 | Remove redundant `NULL` check for `mrb_malloc` | KOBAYASHI Shuji | |
| 2019-01-24 | Remove definition of `Kernel#sprintf` in `mruby-print` | KOBAYASHI Shuji | |
| 2019-01-23 | Merge pull request #4242 from shuujii/remove-no-meaning-statement | Yukihiro "Matz" Matsumoto | |
| [ci skip] Remove no meaning statement in `bm_app_lc_fizzbuzz.rb` | |||
| 2019-01-23 | [ci skip] Remove no meaning statement in `bm_app_lc_fizzbuzz.rb` | KOBAYASHI Shuji | |
| 2019-01-22 | Fix tests for `String#reverse` with `MRB_UTF8_STRING` | KOBAYASHI Shuji | |
| 2019-01-21 | Use `assert_raise` and `assert_nothing_raised` in `mruby-sleep` tests | KOBAYASHI Shuji | |
| 2019-01-20 | Fix memory leak `sval` when out of memory in `Data_Wrap_Struct()` | dearblue | |
| 2019-01-20 | Merge pull request #4236 from shuujii/remove-gitkeep | Yukihiro "Matz" Matsumoto | |
| Remove `.gitkeep` files | |||
| 2019-01-19 | Remove `.gitkeep` files | KOBAYASHI Shuji | |
| 2019-01-18 | Avoid a side effect when run Rake without execution of tasks | KOBAYASHI Shuji | |
| Avoid directory creation when run `rake -T` etc. | |||
| 2019-01-18 | Merge pull request #4233 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-special-treatments-for-without-float-in-build-scripts Remove special treatments for `MRB_WITHOUT_FLOAT` in build scripts | |||
| 2019-01-18 | Merge pull request #4231 from shuujii/avoid-runtime-eval-for-without-float | Yukihiro "Matz" Matsumoto | |
| Avoid runtime evaluation for `MRB_WITHOUT_FLOAT` | |||
| 2019-01-18 | Merge pull request #4234 from shuujii/fix-assertion-name-for-numeric-test | Yukihiro "Matz" Matsumoto | |
| Fix assertion name for `Numeric#**` test | |||
| 2019-01-17 | Fix assertion name for `Numeric#**` test | KOBAYASHI Shuji | |
| 2019-01-16 | Remove special treatments for `MRB_WITHOUT_FLOAT` in build scripts | KOBAYASHI Shuji | |
| 2019-01-16 | Avoid runtime evaluation for `MRB_WITHOUT_FLOAT` | KOBAYASHI Shuji | |
| 2019-01-15 | Merge pull request #4230 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-coercing-for-step-counter-in-numeric-step Fix coercing for first step counter in `Numeric#step` | |||
| 2019-01-15 | Fix coercing for first step counter in `Numeric#step` | KOBAYASHI Shuji | |
| 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] | |||
| 2019-01-15 | Merge pull request #4228 from shuujii/sort-gitignore | Yukihiro "Matz" Matsumoto | |
| [ci skip] Sort `.gitignore` | |||
| 2019-01-15 | [ci skip] Sort `.gitignore` | KOBAYASHI Shuji | |
| 2019-01-15 | Merge pull request #4226 from dearblue/fix-build-cxx-exc | Yukihiro "Matz" Matsumoto | |
| Build fails when set `conf.build_dir=<rel path>` and `conf.enable_cxx_exception` | |||
| 2019-01-15 | Merge pull request #4227 from shuujii/ignore-compiler-tmp-files | Yukihiro "Matz" Matsumoto | |
| Ignore compiler temporary files (for `-save-temps` flag) | |||
| 2019-01-14 | Ignore compiler temporary files (for `-save-temps` flag) | KOBAYASHI Shuji | |
| 2019-01-14 | Merge pull request #4222 from shuujii/use-g-instead-of-e | Yukihiro "Matz" Matsumoto | |
| Use `%g` instead of `%e` for float representation in dump format | |||
| 2019-01-14 | Merge pull request #4225 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/improve-compatibility-to-cruby-for-float-to_s Improve compatibility to CRuby for `Float#to_s` | |||
| 2019-01-14 | Fix build failed when set `conf.build_dir=<rel path>` and ↵ | dearblue | |
| `conf.enable_cxx_exception` | |||
