| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |||
| 2019-02-17 | Fix typos | yui-knk | |
| 2019-02-17 | Refine dependencies for `mruby-config` | KOBAYASHI Shuji | |
| 2019-02-16 | Use `const int` instead of `enum` | dearblue | |
| 2019-02-16 | Merge pull request #4278 from shuujii/add-length-argument-for-sym_inline_unpack | Yukihiro "Matz" Matsumoto | |
| Add length argument for `sym_inline_unpack()` | |||
| 2019-02-16 | Fix inline packed symbols on 32 bit mode with MRB_WORD_BOXING | dearblue | |
| 2019-02-16 | Fix to defined `MRB_SYMBOL_BITSIZE` and `MRB_SYMBOL_MAX` always; ref #4077 | dearblue | |
| 2019-02-16 | Add length argument for `sym_inline_unpack()` | KOBAYASHI Shuji | |
| `sym_inline_unpack_with_bit()` is moved inside of `sym_inline_unpack()` because this is used only one place. | |||
| 2019-02-15 | Merge pull request #4277 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/extract-code-fragment-for-unpacking-in-sym_inline_unpack Extract code fragment for unpacking into method in `sym_inline_unpack()` | |||
| 2019-02-15 | Extract code fragment for unpacking into method in `sym_inline_unpack()` | KOBAYASHI Shuji | |
| 2019-02-15 | Merge pull request #4276 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-assert-for-checking-sym-in-sym_inline_unpack Use `mrb_assert()` for checking `sym` in `sym_inline_unpack()` | |||
| 2019-02-14 | Merge pull request #4275 from shuujii/add-const-to-pack_table-in-symbol.c | Yukihiro "Matz" Matsumoto | |
| Add `const` to `pack_table` in `src/symbol.c` | |||
| 2019-02-14 | Use `mrb_assert()` for checking `sym` in `sym_inline_unpack()` | KOBAYASHI Shuji | |
| 2019-02-14 | Add `const` to `pack_table` to `src/symbol.c` | KOBAYASHI Shuji | |
| 2019-02-14 | Merge pull request #4274 from shuujii/lazy-message-diff-creation-for-assertion | Yukihiro "Matz" Matsumoto | |
| Lazy message/diff creation for assertion in `test/assert.rb` | |||
| 2019-02-14 | Lazy message/diff creation for assertion in `test/assert.rb` | KOBAYASHI Shuji | |
| Include the following changes too: - Extract part of logic with block to a method - Use `var ||= ...` instead of `var = ... unless var` - Unify using parentheses for `t_print` - Change methods order | |||
| 2019-02-13 | Merge pull request #4269 from shuujii/always-through-assert_true-for-assertion | Yukihiro "Matz" Matsumoto | |
| Always through `assert_true` for assertion methods in `test/assert.rb` | |||
| 2019-02-13 | Merge pull request #4273 from shuujii/refine-mruby-bin-config-mrbgem.rake | Yukihiro "Matz" Matsumoto | |
| Refine `mrbgems/mruby-bin-config/mrbgem.rake` | |||
| 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 | Merge pull request #4272 from shuujii/refactor-for-node_back_ref-in-codegen | Yukihiro "Matz" Matsumoto | |
| Small refactoring in `codegen.c` | |||
| 2019-02-11 | Small refactoring in `codegen.c` | KOBAYASHI Shuji | |
| 2019-02-11 | Should not copy keys&values when a hash table is empty; fix #4270 | Yukihiro "Matz" Matsumoto | |
| 2019-02-11 | No strict argument check for blocks when keyword arguments exist; ref #4270 | Yukihiro "Matz" Matsumoto | |
| 2019-02-10 | Merge pull request #4268 from dearblue/null-safe-mrb_open_core | Yukihiro "Matz" Matsumoto | |
| NULL safed `mrb_open_core()` | |||
