Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-03-27 | Update to ruby/spec@5e579e2 | Andrew Konchin | |
Notes: Merged: https://github.com/ruby/ruby/pull/12984 | |||
2025-03-18 | [Feature #20702] Tests for Array#fetch_values | Nobuyoshi Nakada | |
2025-02-02 | [Bug #21106] Fix tests for custom random object | Nobuyoshi Nakada | |
When a positive integer limit is given, `rand` method of a RNG object is expected to return a value between 0 and the limit (exclusive). Fix shuffle_spec.rb like as the similar code in sample_spec.rb, and add tests for greater values. TODO: - Return a value that is equal to or greater than the limit given to the RNG object. - Extract common code about RNG objects to a shared file. Notes: Merged: https://github.com/ruby/ruby/pull/12690 | |||
2024-12-10 | Update to ruby/spec@9f10222 | Andrew Konchin | |
Notes: Merged: https://github.com/ruby/ruby/pull/12297 | |||
2024-09-06 | Implement Array#fetch_values | Jean Boussier | |
[Feature #20702] Works the same way than `Hash#fetch_values` for for array. Notes: Merged: https://github.com/ruby/ruby/pull/11557 | |||
2024-07-24 | Add "c_long_size" guard, supplanting "wordsize" and stop using Integer#size | Alan Wu | |
What a "word" is when talking about sizes is confusing because it's a highly overloaded term. Intel, Microsoft, and GDB are just a few vendors that have their own definition of what a "word" is. Specs that used the "wordsize" guard actually were mostly testing for the size of the C `long` fundamental type, so rename the guard for clarity. Also, get the size of `long` directly from RbConfig instead of guessing using Integer#size. Integer#size is not guaranteed to have anything to do with the `long` type. Notes: Merged: https://github.com/ruby/ruby/pull/11130 | |||
2024-07-02 | Update to ruby/spec@f8987ac | Andrew Konchin | |
2024-06-10 | Update to ruby/spec@517f06f | Andrew Konchin | |
2024-03-14 | Update to ruby/spec@89175b2 | Benoit Daloze | |
2023-11-29 | Do not call the inplicit convercion spec on older ruby versions | Tema Bolshakov | |
2023-11-29 | Fix Array#rassoc spec | Tema Bolshakov | |
2023-11-27 | Update to ruby/spec@c3206f6 | Benoit Daloze | |
2023-10-30 | Update to ruby/spec@bd7017f | Benoit Daloze | |
2023-06-26 | Update to ruby/spec@30e1c35 | Benoit Daloze | |
2023-05-29 | Update to ruby/spec@c3677cf | Benoit Daloze | |
2023-04-25 | Update to ruby/spec@7f69c86 | Benoit Daloze | |
2023-03-15 | rb_ary_sum: don't enter fast path if initial isn't a native numeric type. | Jean Boussier | |
[Bug #19530] If the initial value isn't one of the special cased types, we directly jump to the slow path. Notes: Merged: https://github.com/ruby/ruby/pull/7519 | |||
2023-02-27 | Update to ruby/spec@e7dc804 | Benoit Daloze | |
2023-02-10 | [DOC] Move old ChangeLog files to doc/ChangeLog (#7293) | Takashi Kokubun | |
Notes: Merged-By: k0kubun <[email protected]> | |||
2023-01-23 | blade is hosted under ruby-lang.org now | Hiroshi SHIBATA | |
2023-01-05 | * remove trailing spaces, append newline at EOF. [ci skip] | git | |
2023-01-05 | Update to ruby/spec@9d69b95 | Benoit Daloze | |
2022-11-07 | Update to ruby/spec@740ccc8 | Benoit Daloze | |
2022-08-11 | Fix Array#[] with ArithmeticSequence with negative steps (#5739) | Jeremy Evans | |
* Fix Array#[] with ArithmeticSequence with negative steps Previously, Array#[] when called with an ArithmeticSequence with a negative step did not handle all cases correctly, especially cases involving infinite ranges, inverted ranges, and/or exclusive ends. Fixes [Bug #18247] * Add Array#slice tests for ArithmeticSequence with negative step to test_array Add tests of rb_arithmetic_sequence_beg_len_step C-API function. * Fix ext/-test-/arith_seq/beg_len_step/depend * Rename local variables * Fix a variable name Co-authored-by: Kenta Murata <[email protected]> Notes: Merged-By: mrkn <[email protected]> | |||
2022-06-26 | Update to ruby/spec@ab32a1a | Benoit Daloze | |
2022-04-25 | Update to ruby/spec@3affe1e | Benoit Daloze | |
2022-03-28 | Update to ruby/spec@aaf998f | Benoit Daloze | |
2022-03-03 | Update to ruby/spec@82cd3a3 | Benoit Daloze | |
2022-01-10 | Update to ruby/spec@226cfdc | Benoit Daloze | |
2021-11-29 | Update to ruby/spec@7f22a0b | Benoit Daloze | |
2021-10-28 | Update to ruby/spec@21a48d9 | Benoit Daloze | |
2021-10-20 | Update to ruby/spec@254c380 | Benoit Daloze | |
2021-10-20 | Update to ruby/spec@d6921ef | Benoit Daloze | |
2021-09-07 | Update to ruby/spec@b1e93a2 | Benoit Daloze | |
2021-07-29 | Update to ruby/spec@b65d01f | Benoit Daloze | |
2021-06-02 | Update to ruby/spec@a0b7d0d | Benoit Daloze | |
2021-02-27 | Update to ruby/spec@37e52e5 | Benoit Daloze | |
2020-12-27 | Update to ruby/spec@4ce9f41 | Benoit Daloze | |
2020-12-21 | Use Integer instead of Fixnum/Bignum | Nobuyoshi Nakada | |
2020-11-13 | Update to ruby/spec@b0b7f53 | Benoit Daloze | |
2020-11-03 | Make Array methods return Array instances instead of subclass instances | Jeremy Evans | |
This changes the following methods to return Array instances instead of subclass instances: * Array#drop * Array#drop_while * Array#flatten * Array#slice! * Array#slice/#[] * Array#take * Array#take_while * Array#uniq * Array#* Fixes [Bug #6087] Notes: Merged: https://github.com/ruby/ruby/pull/3690 Merged-By: jeremyevans <[email protected]> | |||
2020-10-24 | Update to ruby/spec@4f59d86 | Benoit Daloze | |
2020-07-27 | Update to ruby/spec@07164da | Benoit Daloze | |
2020-06-27 | Update to ruby/spec@b6b7752 | Benoit Daloze | |
2020-05-31 | Update to ruby/spec@4e486fa | Benoit Daloze | |
2020-05-03 | Update to ruby/spec@032ee74 | Benoit Daloze | |
2020-04-01 | Drop support for ruby 2.4 from ruby/spec | Nobuyoshi Nakada | |
Notes: Merged: https://github.com/ruby/ruby/pull/2892 | |||
2020-04-01 | Use FrozenError instead of frozen_error_class | Nobuyoshi Nakada | |
Notes: Merged: https://github.com/ruby/ruby/pull/2892 | |||
2020-02-28 | Update to ruby/spec@41bf282 | Benoit Daloze | |
2020-01-28 | Update to ruby/spec@f8a2d54 | Benoit Daloze | |