summaryrefslogtreecommitdiff
path: root/gems/bundled_gems
AgeCommit message (Collapse)Author
2023-10-31Update bundled gems list as of 2023-10-30git
2023-10-28Update bundled gems list at 6589af52d22e1b5976295adc7968c5 [ci skip]git
2023-10-27Update bundled_gems [ci skip]Kazuhiro NISHIYAMA
2023-10-24[Bug #19968] Revert RBS revision to testNobuyoshi Nakada
This reverts the commits for the master branch of RBS: - commit f717faac632dd8664d0967f8e639b84d5d032854: "Update rbs revision to test" The target revision to test is in master branch, not for 3.2.x. - commit 9e93af5329f35092c3de3ea37d4e9e181b800bb2: "Skip RBS `RbConfig::TOPDIR` test that is `nil` before installation" RbConfig_test.rb is not updated in 3.2.x branch.
2023-10-22Update rbs revision to testNobuyoshi Nakada
2023-10-10Update bundled gems list at 2023-10-10git
2023-10-05Update bundled gems list at 2023-10-05git
2023-09-28Requires ruby/rbs#1550Nobuyoshi Nakada
2023-09-28Update bundled gems list at 2023-09-28git
2023-09-28Bundle RBS 3.2.2Soutaro Matsumoto
2023-09-07Rewrite Integer#times in Ruby (#8388)Takashi Kokubun
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
2023-09-07Update bundled gems list at 2023-09-07git
2023-08-30Bundle RBS 3.2.1 (#8306)Soutaro Matsumoto
Notes: Merged-By: soutaro <matsumoto@soutaro.com>
2023-08-12Update bundled gems list at 2023-08-12git
2023-07-31Update bundled gems list at 2023-07-31git
2023-07-28Update bundled gems list at 2023-07-28git
2023-07-27Update bundled gems list at 2023-07-27git
2023-07-20Update bundled gems list at 2023-07-20git
2023-07-13Fix a CI failure on rbsTakashi Kokubun
This commit applies https://github.com/ruby/rbs/pull/1374.
2023-06-25Update bundled gems list at 2023-06-25git
2023-06-17Update bundled gems list at 2023-06-17git
2023-06-14Removed rake-compiler dependency for test-bundled-gemsHiroshi SHIBATA
It's needless with racc-1.7.1 Notes: Merged: https://github.com/ruby/ruby/pull/7943
2023-06-13Update bundled gems list at 2023-06-13git
2023-06-11Update bundled gems list at 2023-06-11git
2023-06-08Bump up racc-1.7.0Hiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7877
2023-06-08Try to promote racc as bundled gemsHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7877
2023-05-25Update bundled gems list at 2023-05-25git
2023-05-13Update bundled gems list at 2023-05-13git
2023-05-09Use debug-1.8.0Hiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7781
2023-05-09Use HEAD version of ruby/debug for testingHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7781
2023-04-28Bundle rbs-3.1.0 (#7766)Soutaro Matsumoto
Notes: Merged-By: soutaro <matsumoto@soutaro.com>
2023-04-01Fix a test in typeprofTakashi Kokubun
Revert "Skip typeprof for now" This reverts commit bdbf663cef31e2194bf87ae5c11dfe5525316ca8.
2023-03-29Update bundled gems list at 2023-03-29git
2023-03-28Update rbs's commit hash to avoid test failure on pathname (#7596)Masataka Pocke Kuwabara
Notes: Merged-By: pocke <p.ck.t22@gmail.com>
2023-03-20Add explanation to rbs_skip_tests (#7525)Soutaro Matsumoto
Notes: Merged-By: soutaro <matsumoto@soutaro.com>
2023-03-14Try to use https://github.com/ruby/rbs/pull/1273Hiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/7516
2023-03-13Fork rbs to fix test failuresTakashi Kokubun
https://github.com/ruby/rbs/pull/1274
2023-03-13Update bundled gems list at 2023-03-13git
2023-03-07Update bundled gems list at 2023-03-07git
2023-03-06Change bytecode of `f(*a, **kw)`Koichi Sasada
`f(*a, **kw)` is compiled to `f([*a, kw])` but it makes an dummy array, so change it to pass two arguments `a` and `kw` with calling flags. ``` ruby 3.2.0 (2022-12-29 revision a7d467a792) [x86_64-linux] Calculating ------------------------------------- foo() 15.354M (± 4.2%) i/s - 77.295M in 5.043650s dele() 13.439M (± 3.9%) i/s - 67.109M in 5.001974s dele(*) 6.265M (± 4.5%) i/s - 31.730M in 5.075649s dele(*a) 6.286M (± 3.3%) i/s - 31.719M in 5.051516s dele(*a, **kw) 1.926M (± 4.5%) i/s - 9.753M in 5.076487s dele(*, **) 1.927M (± 4.2%) i/s - 9.710M in 5.048224s dele(...) 5.871M (± 3.9%) i/s - 29.471M in 5.028023s forwardable 4.969M (± 4.1%) i/s - 25.233M in 5.087498s ruby 3.3.0dev (2023-01-13T01:28:00Z master 7e8802fa5b) [x86_64-linux] Calculating ------------------------------------- foo() 16.354M (± 4.7%) i/s - 81.799M in 5.014561s dele() 14.256M (± 3.5%) i/s - 71.656M in 5.032883s dele(*) 6.701M (± 3.8%) i/s - 33.948M in 5.074938s dele(*a) 6.681M (± 3.3%) i/s - 33.578M in 5.031720s dele(*a, **kw) 4.200M (± 4.4%) i/s - 21.258M in 5.072583s dele(*, **) 4.197M (± 5.3%) i/s - 21.322M in 5.096684s dele(...) 6.039M (± 6.8%) i/s - 30.355M in 5.052662s forwardable 4.788M (± 3.2%) i/s - 24.033M in 5.024875s ```
2023-03-06Revert "Update bundled gems list at 2023-03-06"Hiroshi SHIBATA
This reverts commit 84150e6901ad0599d7bcbab34aed2f20235959ff.
2023-03-06Update bundled gems list at 2023-03-06git
2023-03-06minitest moved minitest org from seattlerb nowHiroshi SHIBATA
2023-03-04Just use the latest minitestTakashi Kokubun
2023-03-04Revert "Workaround minitest's version issue"Takashi Kokubun
This reverts commit a3abe3fd6d59a3624a193028a0d3b6b9e90b0260.
2023-03-04Workaround minitest's version issueTakashi Kokubun
Every RubyCI is broken because minitest has a newer version. http://rubyci.s3.amazonaws.com/ubuntu/ruby-master/log/20230305T061003Z.fail.html.gz
2023-03-02Increase timeout for ruby/debug tests (#7421)Takashi Kokubun
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
2023-03-02Fix rbs (#7415)Soutaro Matsumoto
* Update RBS to skip validation task * Revert TEST_BUNDLED_GEMS_ALLOW_FAILURES Notes: Merged-By: soutaro <matsumoto@soutaro.com>
2023-03-01Test with unreleased RBS (#7411)Soutaro Matsumoto
* Use RBS 3.0.1 3.0.2 cannot run test on Ruby CI. Waiting for the next release... * Use unreleased version of RBS Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
2023-03-01Update bundled gems list at 2023-03-01git