| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-03-25 | Remove implementation of `Symbol#===` | KOBAYASHI Shuji | |
| For reducing program size. | |||
| 2019-03-25 | Need to check length before packing a symbol; fix #4340 | Yukihiro "Matz" Matsumoto | |
| 2019-03-25 | Update float test values to avoid precision errors. | Yukihiro "Matz" Matsumoto | |
| 2019-03-25 | Avoid infinite binary floating numbers in `float`. | Yukihiro "Matz" Matsumoto | |
| 2019-03-24 | Merge pull request #4339 from shuujii/fix-arguments-spec-in-src-proc.c | Yukihiro "Matz" Matsumoto | |
| Fix arguments spec in `src/proc.c` | |||
| 2019-03-24 | Merge pull request #4337 from shuujii/refactor-t_print-for-test | Yukihiro "Matz" Matsumoto | |
| Refactor `t_print` for test | |||
| 2019-03-24 | Fix arguments spec in `src/proc.c` | KOBAYASHI Shuji | |
| 2019-03-23 | Refactor `t_print` for test | KOBAYASHI Shuji | |
| 2019-03-22 | Merge pull request #4336 from shuujii/simplify-assert_step | Yukihiro "Matz" Matsumoto | |
| Simplify `assert_step` in `test/t/numeric.rb` | |||
| 2019-03-22 | Simplify `assert_step` in `test/t/numeric.rb` | KOBAYASHI Shuji | |
| 2019-03-22 | Merge pull request #4334 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-redundant-content-in-assertion-failure-message-and-diff Remove redundant content in assertion failure message and diff | |||
| 2019-03-22 | Merge pull request #4335 from shuujii/fix-Float-eql | Yukihiro "Matz" Matsumoto | |
| Fix `Float#eql?` | |||
| 2019-03-21 | Fix `Float#eql?` | KOBAYASHI Shuji | |
| 2019-03-21 | Remove redundant content in assertion failure message and diff | KOBAYASHI Shuji | |
| Based on minitest RubyGem. Example of before this patch: - Assertion[1] Failed: Expected 1 to be 2 Expected: 2 Actual: 1 - Assertion[2] Failed: Expected [1, 3] to include 2 Collection: [1, 3] Object: 2 Example of after this patch: - Assertion[1] Expected: 2 Actual: 1 - Assertion[2] Expected [1, 3] to include 2. | |||
| 2019-03-20 | Merge pull request #4333 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-FrozenError-instead-of-RuntimeError-in-frozen-obj-mod-test Use `FrozenError` instead of `RuntimeError` in frozen object modification test | |||
| 2019-03-20 | Merge pull request #4332 from shuujii/use-Rake-instead-of-MiniRake-on-AppVeyor | Yukihiro "Matz" Matsumoto | |
| Use Rake instead of MiniRake on AppVeyor | |||
| 2019-03-19 | Use `FrozenError` instead of `RuntimeError` in frozen object modification test | KOBAYASHI Shuji | |
| 2019-03-18 | Use Rake instead of MiniRake on AppVeyor | KOBAYASHI Shuji | |
| 1. Reduce build time Build time becomes less than half. In MiniRake, a way of using fiber may not be good. 2. Synchronize standard output No synchronized: mrbtest - Embeddable Ruby Test ........................... Total: 1165 (snip) Time: 1.19 seconds bintest - Command Binary Test ..................... Total: 21 (snip) Time: 0.39 seconds mrbtest - Embeddable Ruby Test ........................... Total: 1165 (snip) Skip: 23 Time: 1.15 seconds (snip) >>> Test cxx_abi <<< >>> Bintest host <<< >>> Test host <<< >>> Test full-debug <<< >>> Bintest cxx_abi <<< Synchronized: >>> Test full-debug <<< mrbtest - Embeddable Ruby Test ........................... Total: 1165 (snip) Time: 1.25 seconds >>> Test host <<< mrbtest - Embeddable Ruby Test ........................... Total: 1165 (snip) Time: 1.16 seconds >>> Bintest host <<< bintest - Command Binary Test ..................... Total: 21 (snip) Time: 0.41 seconds >>> Test cxx_abi <<< mrbtest - Embeddable Ruby Test (snip) | |||
| 2019-03-17 | Merge pull request #4331 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-class-instance-variable-name-validation Fix class/instance variable name validation | |||
| 2019-03-17 | Fix class/instance variable name validation | KOBAYASHI Shuji | |
| - `@@?` etc are invalid class variable name. - `@1` etc are invalid instance variable name. | |||
| 2019-03-16 | Merge pull request #4330 from shuujii/refine-appveyor.yml | Yukihiro "Matz" Matsumoto | |
| Refine `appveyor.yml` | |||
| 2019-03-16 | Refine `appveyor.yml` | KOBAYASHI Shuji | |
| - Add Visual Studio 2017. - Enable `shallow_clone` for saving build time. - Cache extracted WinFlexBison. | |||
| 2019-03-15 | Merge pull request #4329 from shuujii/use-FrozenError-instead-of-RuntimeError | Yukihiro "Matz" Matsumoto | |
| Use `FrozenError` instead of `RuntimeError` in `String#rstrip!` | |||
| 2019-03-15 | Use `FrozenError` instead of `RuntimeError` in `String#rstrip!` | KOBAYASHI Shuji | |
| 2019-03-15 | Merge pull request #4328 from shuujii/fix-constant-name-validation | Yukihiro "Matz" Matsumoto | |
| Fix constant name validation | |||
| 2019-03-15 | Avoid using infinite binary floating point numbers in tests. | Yukihiro "Matz" Matsumoto | |
| 2019-03-15 | Use `fmt_fp()` for portable float representation. | Yukihiro "Matz" Matsumoto | |
| 2019-03-14 | Fix constant name validation | KOBAYASHI Shuji | |
| `X!` etc are invalid constant name. | |||
| 2019-03-13 | Merge pull request #4327 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/do-not-raise-an-exception-when-bintest-fail Do not raise an exception when bintest fail | |||
| 2019-03-13 | Do not raise an exception when bintest fail | KOBAYASHI Shuji | |
| - An exception do not raise when mrbtest fail. - There are no useful informations in exception message and backtrace. | |||
| 2019-03-13 | Merge pull request #4326 from shuujii/fix-typo-in-AUTHORS | Yukihiro "Matz" Matsumoto | |
| Fix typo in `AUTHORS` [ci skip] | |||
| 2019-03-13 | Fix typo in `AUTHORS` [ci skip] | KOBAYASHI Shuji | |
| 2019-03-12 | Merge pull request #4322 from shuujii/reduce-String-creation-in-checking-name | Yukihiro "Matz" Matsumoto | |
| Reduce `String` creation in `check_(cv|const)_name_sym` | |||
| 2019-03-12 | Merge pull request #4325 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-missing-assertions-in-mruby-string-ext-test Fix missing assertions in `mruby-string-ext` test | |||
| 2019-03-12 | Update the description at the head of `AUTHORS`; ref #4324 | Yukihiro "Matz" Matsumoto | |
| 2019-03-12 | Fix missing assertions in `mruby-string-ext` test | KOBAYASHI Shuji | |
| 2019-03-12 | Merge pull request #4324 from shuujii/update-AUTHORS | Yukihiro "Matz" Matsumoto | |
| Update `AUTHORS` [ci skip] | |||
| 2019-03-12 | Update `AUTHORS` [ci skip] | KOBAYASHI Shuji | |
| 2019-03-12 | Merge pull request #4323 from shuujii/rename-MITL-to-LICENSE | Yukihiro "Matz" Matsumoto | |
| Rename `MITL` to `LICENSE` in `.yardopts`; ref 67728c1 [ci skip] | |||
| 2019-03-12 | Rename `MITL` to `LICENSE` in `.yardopts`; ref 67728c1 [ci skip] | KOBAYASHI Shuji | |
| 2019-03-12 | Rename `MITL` to `LICENSE` to conform GitHub convention. | Yukihiro "Matz" Matsumoto | |
| 2019-03-11 | Reduce `String` creation in `check_(cv|const)_name_sym` | KOBAYASHI Shuji | |
| 2019-03-10 | Merge pull request #4321 from shuujii/add-bintest-header | Yukihiro "Matz" Matsumoto | |
| Add bintest header | |||
| 2019-03-10 | Add bintest header | KOBAYASHI Shuji | |
| 2019-03-09 | Merge pull request #4316 from shuujii/add-a-missing-file-for-4314 | Yukihiro "Matz" Matsumoto | |
| Add a missing file for #4314 | |||
| 2019-03-08 | Merge pull request #4319 from shuujii/allow-enable_bintest-without-enable_test | Yukihiro "Matz" Matsumoto | |
| Allow `enable_bintest` without `enable_test` in build config | |||
| 2019-03-08 | Allow `enable_bintest` without `enable_test` in build config | KOBAYASHI Shuji | |
| 2019-03-08 | Merge pull request #4318 from shuujii/set-GEMNAME-on-bintest | Yukihiro "Matz" Matsumoto | |
| Set `GEMNAME` on bintest | |||
| 2019-03-07 | Set `GEMNAME` on bintest | KOBAYASHI Shuji | |
| 2019-03-07 | Add a missing file for #4314 | KOBAYASHI Shuji | |
