summaryrefslogtreecommitdiff
path: root/gems
Commit message (Collapse)AuthorAgeFilesLines
* Update bundled gems list at 2023-05-13git2023-05-131-1/+1
|
* Use debug-1.8.0Hiroshi SHIBATA2023-05-091-1/+1
|
* Use HEAD version of ruby/debug for testingHiroshi SHIBATA2023-05-091-1/+1
|
* Bundle rbs-3.1.0 (#7766)Soutaro Matsumoto2023-04-281-1/+1
|
* Fix a test in typeprofTakashi Kokubun2023-04-011-1/+1
| | | | | | Revert "Skip typeprof for now" This reverts commit bdbf663cef31e2194bf87ae5c11dfe5525316ca8.
* Update bundled gems list at 2023-03-29git2023-03-291-1/+1
|
* Update rbs's commit hash to avoid test failure on pathname (#7596)Masataka Pocke Kuwabara2023-03-281-1/+1
|
* Add explanation to rbs_skip_tests (#7525)Soutaro Matsumoto2023-03-201-1/+1
|
* Try to use https://github.com/ruby/rbs/pull/1273Hiroshi SHIBATA2023-03-141-1/+1
|
* Fork rbs to fix test failuresTakashi Kokubun2023-03-131-1/+1
| | | | https://github.com/ruby/rbs/pull/1274
* Update bundled gems list at 2023-03-13git2023-03-131-1/+1
|
* Update bundled gems list at 2023-03-07git2023-03-071-1/+1
|
* Change bytecode of `f(*a, **kw)`Koichi Sasada2023-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `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 ```
* Revert "Update bundled gems list at 2023-03-06"Hiroshi SHIBATA2023-03-061-1/+1
| | | | This reverts commit 84150e6901ad0599d7bcbab34aed2f20235959ff.
* Update bundled gems list at 2023-03-06git2023-03-061-1/+1
|
* minitest moved minitest org from seattlerb nowHiroshi SHIBATA2023-03-061-1/+1
|
* Just use the latest minitestTakashi Kokubun2023-03-041-1/+1
|
* Revert "Workaround minitest's version issue"Takashi Kokubun2023-03-041-1/+1
| | | | This reverts commit a3abe3fd6d59a3624a193028a0d3b6b9e90b0260.
* Workaround minitest's version issueTakashi Kokubun2023-03-041-1/+1
| | | | | Every RubyCI is broken because minitest has a newer version. http://rubyci.s3.amazonaws.com/ubuntu/ruby-master/log/20230305T061003Z.fail.html.gz
* Increase timeout for ruby/debug tests (#7421)Takashi Kokubun2023-03-021-1/+1
|
* Fix rbs (#7415)Soutaro Matsumoto2023-03-021-1/+1
| | | | * Update RBS to skip validation task * Revert TEST_BUNDLED_GEMS_ALLOW_FAILURES
* Test with unreleased RBS (#7411)Soutaro Matsumoto2023-03-011-1/+1
| | | | | | | * Use RBS 3.0.1 3.0.2 cannot run test on Ruby CI. Waiting for the next release... * Use unreleased version of RBS
* Update bundled gems list at 2023-03-01git2023-03-011-2/+2
|
* Update bundled gems list at 2023-02-28git2023-02-281-1/+1
|
* Update bundled gems list at 2023-02-27git2023-02-271-2/+2
|
* Use the development versions of minitest and debug gemsYusuke Endoh2023-02-191-2/+2
| | | | | | | | This is a preparation for a new message format of NameError. [Feature #18285] https://github.com/minitest/minitest/pull/942 https://github.com/ruby/debug/pull/889
* Update bundled gems list at 2023-01-20git2023-01-201-1/+1
|
* Update RBS commit hash (#7143)Soutaro Matsumoto2023-01-181-1/+1
| | | Use a commit at the top of RBS 2.8.3, not 3.0.0.dev.N.
* Bump up typeprof-0.21.4Hiroshi SHIBATA2023-01-121-1/+1
|
* Try to use https://github.com/ruby/rbs/pull/1207Hiroshi SHIBATA2023-01-121-1/+1
|
* Remove extra line which causes `make test-bundled-gems-fetch` to failBenoit Daloze2023-01-101-1/+0
|
* [DOC] Comments about fields in bundled_gems fileNobuyoshi Nakada2023-01-101-1/+8
|
* Update bundled gems list at 2023-01-06git2023-01-061-1/+1
|
* Update bundled gems list at 2023-01-02git2023-01-021-1/+1
|
* Update bundled_gems for net-imapShugo Maeda2022-12-231-1/+1
|
* debug.gem v1.7.1Koichi Sasada2022-12-231-1/+1
|
* Revert "Update bundled gems list at 2022-12-22"Takashi Kokubun2022-12-211-1/+1
| | | | This reverts commit 89a66f20d8701f30f3d9952ae62a02fdefcd166b.
* Update bundled gems list at 2022-12-22git2022-12-221-1/+1
|
* Update power_assert to 2.0.3Kazuki Tsujimoto2022-12-221-1/+1
|
* Update bundled_gemsHiroshi SHIBATA2022-12-211-2/+2
|
* Partially revert "Update bundled_gems"Takashi Kokubun2022-12-151-1/+1
| | | | | | This reverts the net-imap upgrade of commit e3ed6c07832edf2a95bae3bdd908cc3f5b65eebe. net-imap tests of test-bundled-gems seem to be broken https://github.com/ruby/ruby/actions/runs/3704473689/jobs/6277145052.
* Update bundled_gemsKazuhiro NISHIYAMA2022-12-151-2/+2
|
* debug.gem v1.7.0Koichi Sasada2022-12-031-1/+1
|
* Use rbs HEAD for [Feature #19134]Shugo Maeda2022-11-291-1/+1
|
* Update bundled gems list at 2022-11-28git2022-11-281-1/+1
|
* Update bundled_gems (#6813)Soutaro Matsumoto2022-11-261-1/+1
| | | * Update bundled_gems
* Update bundled gems list at 2022-10-30git2022-10-301-1/+1
|
* * remove trailing spaces. [ci skip]git2022-10-241-1/+1
|
* Update bundled gems list at 2022-10-24git2022-10-241-1/+1
|
* Update bundled gems list at 2022-10-16Nobuyoshi Nakada2022-10-161-1/+1
|