| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-02-27 | Add test for string literal concatenation | dearblue | |
| 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 | Merge pull request #4302 from shuujii/add-newline-to-warning-by-mrb_warn | Yukihiro "Matz" Matsumoto | |
| Add newline to warning by `mrb_warn()` | |||
| 2019-02-27 | Merge pull request #4300 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-yywarning-instead-of-yywarning_s-for-MRB_WITHOUT_FLOAT Use `yywarning()` instead of `yywarning_s()` for `MRB_WITHOUT_FLOAT` | |||
| 2019-02-27 | Add newline to warning by `mrb_warn()` | KOBAYASHI Shuji | |
| 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-27 | Merge pull request #4299 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-separator-in-test-skip-error-messages Remove unneeded `=>` in test skip/error messages | |||
| 2019-02-26 | Merge pull request #4298 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-unneeded-const_defined-Time-in-mruby-io-test Remove unneeded `const_defined?(:Time)` in `mruby-io` test | |||
| 2019-02-26 | Remove unneeded `=>` in test skip/error messages | 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-25 | Merge pull request #4294 from shuujii/remove-explicit-set-of-DISABLE_GEMS | Yukihiro "Matz" Matsumoto | |
| Remove explicit set of `DISABLE_GEMS` | |||
| 2019-02-25 | Merge pull request #4296 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/refine-mrbgem-name-in-assertion-failure-message-for-core-test Refine mrbgem name in assertion failure/skip message for core test | |||
| 2019-02-25 | Merge pull request #4297 from shuujii/refactor-src-backtrace.c | Yukihiro "Matz" Matsumoto | |
| Refactor `src/backtrace.c` | |||
| 2019-02-25 | Refactor `src/backtrace.c` | KOBAYASHI Shuji | |
| - Move calling `mrb_debug_get_filename()` to after `lineno` check. - Remove unneeded array check in `print_backtrace()`. - Add a few `const` qualifier. | |||
| 2019-02-24 | Refine mrbgem name in assertion failure/skip message for core test | KOBAYASHI Shuji | |
| 2019-02-24 | Merge pull request #4295 from wataash/struct-dig | Yukihiro "Matz" Matsumoto | |
| Move `Object#dig` to `Struct#dig` | |||
| 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-23 | Remove explicit set of `DISABLE_GEMS` | KOBAYASHI Shuji | |
| `DISABLE_GEMS` is automatically set (or unset); ref #790 | |||
| 2019-02-23 | Merge pull request #4293 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/integrate-init_mrbtest.c-to-driver.c-in-mruby-test-mrbgem Integrate `init_mrbtest.c` to `driver.c` in `mruby-test` mrbgem | |||
| 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-21 | Merge pull request #4291 from shuujii/fix-typo-in-lib-mruby-build-command.rb | Yukihiro "Matz" Matsumoto | |
| Fix typo in `lib/mruby/build/command.rb` | |||
| 2019-02-21 | Merge pull request #4290 from shuujii/refactor-exception-handling-in-assert | Yukihiro "Matz" Matsumoto | |
| Refactor exception handling in `assert` | |||
| 2019-02-21 | Fix typo in `lib/mruby/build/command.rb` | KOBAYASHI Shuji | |
| 2019-02-21 | Refactor exception handling in `assert` | KOBAYASHI Shuji | |
| 2019-02-20 | Merge pull request #4288 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/assert_true-should-pass-when-actual-is-only-true `assert_true`/`assert_false` should pass when actual is only `true`/`false` | |||
| 2019-02-20 | `assert_true`/`assert_false` should pass when actual is only `true`/`false` | KOBAYASHI Shuji | |
| For the following reasons: - Previous behavior is confusable because it's different from test/unit rubygem's `assert_true` - Tests may pass unintentionally in an inappropriate way; ref #4285 #4287 | |||
| 2019-02-19 | Merge pull request #4286 from kimushu/mrdb-local-variables | Yukihiro "Matz" Matsumoto | |
| mrdb: add "info locals" command | |||
| 2019-02-19 | Merge pull request #4287 from shuujii/use-more-appropriate-assertion-methods | Yukihiro "Matz" Matsumoto | |
| Use more appropriate assertion methods | |||
| 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 | Merge pull request #4285 from shuujii/fix-wrong-assertin-method-in-some-tests | Yukihiro "Matz" Matsumoto | |
| Fix wrong assertion method in some tests | |||
| 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 | Parenthesize expression to suppress warning; ref #4278 | Yukihiro "Matz" Matsumoto | |
| 2019-02-18 | Use key argument register for `OP_KEY_P` to reduce register use. | Yukihiro "Matz" Matsumoto | |
| 2019-02-18 | Merge pull request #4283 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/reorder-members-in-struct-backtrace_location Reorder members in `struct backtrace_location` | |||
| 2019-02-18 | Merge pull request #4282 from shuujii/remove-unneeded-memset-in-backtrace.c | Yukihiro "Matz" Matsumoto | |
| Remove unneeded `memset()` in `src/backtrace.c` | |||
| 2019-02-18 | Reorder members in `struct backtrace_location` | KOBAYASHI Shuji | |
| `sizeof(struct backtrace_location)` is 24 bytes -> 16 bytes in LP64 data model etc. | |||
| 2019-02-18 | Remove unneeded `memset()` in `src/backtrace.c` | KOBAYASHI Shuji | |
| 2019-02-17 | Merge pull request #4279 from dearblue/fix-inline-packed-symbols | Yukihiro "Matz" Matsumoto | |
| Fix destroyed "inline packed symbols" on 32 bit mode with `MRB_WORD_BOXING` | |||
| 2019-02-17 | Merge pull request #4280 from shuujii/refine-deps-for-mruby-config | Yukihiro "Matz" Matsumoto | |
| Refine dependencies for `mruby-config` | |||
| 2019-02-17 | Merge pull request #4281 from yui-knk/typos [ci skip | Yukihiro "Matz" Matsumoto | |
| Fix typos | |||
