| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-02-27 | Compositing `NODE_DSTR` and `NODE_DSTR` | dearblue | |
| 2019-02-27 | Compositing `NODE_DSTR` and `NODE_STR` | dearblue | |
| 2019-02-27 | Compositing `NODE_STR` and `NODE_DSTR` | dearblue | |
| 2019-02-27 | Replacement to function for composite two string nodes | dearblue | |
| 2019-02-27 | Replacement to function for `NODE_STR` cheking | dearblue | |
| 2019-02-27 | Compositing `NODE_STR` and `NODE_STR` | dearblue | |
| 2019-02-27 | Concatenate string literals | dearblue | |
| 2019-02-27 | Remove unnecessary backticks; ref #2858 | KOBAYASHI Shuji | |
| 2019-02-27 | Use `yywarning()` instead of `yywarning_s()` for `MRB_WITHOUT_FLOAT` | KOBAYASHI Shuji | |
| 2019-02-26 | Remove unneeded `const_defined?(:Time)` in `mruby-io` test | KOBAYASHI Shuji | |
| `mruby-time` is included in test dependencies. | |||
| 2019-02-24 | Move `Object#dig` to `Struct#dig` | Wataru Ashihara | |
| This method seems to be mistakenly put into `Object` instead of `Struct` since it's in `struct.rb` and daf83946b says: add #dig to Array,Hash and Struct | |||
| 2019-02-22 | Integrate `init_mrbtest.c` to `driver.c` in `mruby-test` mrbgem | KOBAYASHI Shuji | |
| - `mrbgemtest_init()` is needed if `DISABLE_GEMS` is enabled because core tests are run as part of `mruby-test` mrbgem (moreover, `DISABLE_GEMS` is disabled when `enable_test` is used in build config). - For the same reason `mrb_open_core()` etc for core tests is unneeded. | |||
| 2019-02-19 | Merge pull request #4286 from kimushu/mrdb-local-variables | Yukihiro "Matz" Matsumoto | |
| mrdb: add "info locals" command | |||
| 2019-02-19 | Use more appropriate assertion methods | KOBAYASHI Shuji | |
| 2019-02-19 | Add "info locals" command to mrdb | kimu_shu | |
| 2019-02-18 | Merge pull request #4284 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-assert_same-instead-of-assert_equal-in-enum-reverse_each-test Use `assert_same` instead of `assert_equal` in `Enumerable#reverse_each` test | |||
| 2019-02-18 | Fix wrong assertion method in some tests | KOBAYASHI Shuji | |
| 2019-02-18 | Use `assert_same` instead of `assert_equal` in `Enumerable#reverse_each` test | KOBAYASHI Shuji | |
| 2019-02-18 | Use key argument register for `OP_KEY_P` to reduce register use. | Yukihiro "Matz" Matsumoto | |
| 2019-02-17 | Refine dependencies for `mruby-config` | KOBAYASHI Shuji | |
| 2019-02-12 | Refine `mrbgems/mruby-bin-config/mrbgem.rake` | KOBAYASHI Shuji | |
| - Use `MRuby::Gem::Specification` - Fix a binary name is added to `MRuby::Build#bins` multiple times - Close file immediately (avoid using `open(...).read`) - Simplify | |||
| 2019-02-12 | Disable `Symbol.all_symbols`. | Yukihiro "Matz" Matsumoto | |
| 2019-02-12 | Implement inline packed symbols. | Yukihiro "Matz" Matsumoto | |
| Small symbols with all alphanumeric characters (<5) are packed in 32bit symbol integer a la base64. This means those small symbols are not listed in `Symbol.all_symbols`. | |||
| 2019-02-11 | Small refactoring in `codegen.c` | KOBAYASHI Shuji | |
| 2019-02-08 | Add `NoMethodError` tests to `mruby-enumerator` | KOBAYASHI Shuji | |
| 2019-02-08 | Update `mruby-enumerator` test to conform the last update. | Yukihiro "Matz" Matsumoto | |
| 2019-02-08 | Update #4265 patch. | Yukihiro "Matz" Matsumoto | |
| * Update doc comment to clarify `Enumerator.new` without a block is deprecated and left only for internal use. * Fixed some cases `mruby` raise `ArgumentError` too eagerly compared with `CRuby`. | |||
| 2019-02-08 | Fix `Enumerator#(initialize|inspect)` for `nil`/`false` | KOBAYASHI Shuji | |
| 2019-02-08 | Merge pull request #4251 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-no-meaning-statements-in-mruby-io-tests Remove no meaning statements in `mruby-io` tests | |||
| 2019-02-07 | Add `OP_ENTER` to blocks without parameters; fix #4175 | Yukihiro "Matz" Matsumoto | |
| So that `lambda{}.call(1)` raises `ArgumentError` as CRuby does. Also, fixed junk assignment for `lambda{|;a|p a}.call{}`. | |||
| 2019-02-07 | Merge branch 'rename-bin-mruby-config-to-bin-config' of ↵ | Yukihiro "Matz" Matsumoto | |
| https://github.com/shuujii/mruby into shuujii-rename-bin-mruby-config-to-bin-config | |||
| 2019-02-07 | Raise `NameError` for symbol struct access. | Yukihiro "Matz" Matsumoto | |
| 2019-02-06 | Integrate definition of `MRuby::Build#exefile` | KOBAYASHI Shuji | |
| 2019-02-06 | Merge pull request #4256 from shuujii/move-none-to-mrblib-enum | Yukihiro "Matz" Matsumoto | |
| Move `NONE` to `mrblib/enum.rb` | |||
| 2019-02-04 | Merge pull request #4260 from shuujii/fix-symbol-size-with-mrb_utf8_string | Yukihiro "Matz" Matsumoto | |
| Fix `Symbol#size` for multi-byte characters with `MRB_UTF8_STRING` | |||
| 2019-02-04 | Fix `Symbol#size` for multi-byte characters with `MRB_UTF8_STRING` | KOBAYASHI Shuji | |
| Before: p :あ.size #=> 3 After: p :あ.size #=> 1 | |||
| 2019-02-03 | Use `mrb->eException_class` instead of `mrb_class_get()` | KOBAYASHI Shuji | |
| 2019-02-01 | Move `NONE` to `mrblib/enum.rb` | KOBAYASHI Shuji | |
| 2019-01-31 | `Enumerator#size` is not supported [ci skip] | KOBAYASHI Shuji | |
| 2019-01-30 | Remove unneeded `dup` in `Enumerator#initialize` | KOBAYASHI Shuji | |
| 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-28 | Use assertion methods in `FileTest` tests | KOBAYASHI Shuji | |
| 2019-01-27 | Remove no meaning statements in `mruby-io` tests | KOBAYASHI Shuji | |
| 2019-01-26 | fix Time about carry-up and carry-down | takkaw | |
| 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 | Remove unused file for `mruby-io` test | KOBAYASHI Shuji | |
| 2019-01-25 | Use assertion methods in `File` test | KOBAYASHI Shuji | |
