| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-03-27 | Avoid using 'mrb_str_new_static` if a symbol is packed; fix #4342 | Yukihiro "Matz" Matsumoto | |
| 2019-03-27 | Merge pull request #4343 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-dealing-with-infinity-and-NaN-in-assert_float Fix dealing with infinity and NaN in `test/assert.rb:assert_float` | |||
| 2019-03-26 | Fix dealing with infinity and NaN in `test/assert.rb:assert_float` | KOBAYASHI Shuji | |
| `assert_float` is always passed when expected value and/or actual value are infinity or NaN. This behavior seems unintentional. Before this patch: assert_float(Float::INFINITY, 1.0) #=> pass assert_float(-Float::INFINITY, 1) #=> pass assert_float(1, 1/0) #=> pass assert_float(1, -1/0) #=> pass assert_float(1.0, Float::NAN) #=> pass assert_float(Float::NAN, 1) #=> pass After this patch: assert_float(Float::INFINITY, 1.0) #=> fail: Expected 1.0 to be Infinity. assert_float(-Float::INFINITY, 1) #=> fail: Expected 1 to be -Infinity. assert_float(1, 1/0) #=> fail: Expected Infinity to be 1. assert_float(1, -1/0) #=> fail: Expected -Infinity to be 1. assert_float(1.0, Float::NAN) #=> fail: Expected NaN to be 1.0. assert_float(Float::NAN, 1) #=> fail: Expected 1 to be NaN. | |||
| 2019-03-26 | Fix missing `MRB_API` prefix for functions below; clse #4267 | Yukihiro "Matz" Matsumoto | |
| Functions to add prototypes to headers: * mrb_ary_splice() * mrb_notimplement() * mrb_vformat() * mrb_cstr_to_dbl() * mrb_cstr_to_inum() Functions to be made `static` (`MRB_API` was not needed): * mrb_mod_module_function() * mrb_obj_hash() * mrb_str_len_to_inum() Functions to remove `MRB_API` from definitions (referenced from within `libmruby`): * mrb_mod_cv_defined() * mrb_mod_cv_get() * mrb_f_send() | |||
| 2019-03-25 | Use uppercase version of `ctype` macros e.g. `ISSPACE`; fix #4338 | Yukihiro "Matz" Matsumoto | |
| 2019-03-25 | Merge pull request #4341 from shuujii/remove-implementation-of-Symbol-eqq | Yukihiro "Matz" Matsumoto | |
| Remove implementation of `Symbol#===` | |||
| 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 | |
