aboutsummaryrefslogtreecommitdiffstats
path: root/gems
Commit message (Collapse)AuthorAgeFilesLines
* Update bundled gems list as of 2023-11-21git2023-11-221-1/+1
|
* Bundle rbs-3.3.2 (#8974)Soutaro Matsumoto2023-11-211-1/+1
|
* Bundle rbs-3.3.1 (#8921)Soutaro Matsumoto2023-11-211-1/+1
| | | | * bundle rbs-3.3.1 * Restore diff/subtract tests
* Update bundled gems manuallyHiroshi SHIBATA2023-11-141-2/+2
|
* Remove spaces added for ".pre.1" [ci skip]Nobuyoshi Nakada2023-11-041-1/+1
|
* Update bundled gems list as of 2023-11-04git2023-11-041-2/+2
|
* Update bundled gems list as of 2023-11-03Nobuyoshi Nakada2023-11-031-1/+1
|
* Update bundled gems list as of 2023-10-30git2023-10-311-1/+1
|
* Update bundled gems list at 6589af52d22e1b5976295adc7968c5 [ci skip]git2023-10-281-1/+1
|
* Update bundled_gems [ci skip]Kazuhiro NISHIYAMA2023-10-271-1/+1
|
* [Bug #19968] Revert RBS revision to testNobuyoshi Nakada2023-10-241-1/+1
| | | | | | | | | | | | | | 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.
* Update rbs revision to testNobuyoshi Nakada2023-10-221-1/+1
|
* Update bundled gems list at 2023-10-10git2023-10-101-1/+1
|
* Update bundled gems list at 2023-10-05git2023-10-051-1/+1
|
* Requires ruby/rbs#1550Nobuyoshi Nakada2023-09-281-1/+1
|
* Update bundled gems list at 2023-09-28git2023-09-281-1/+1
|
* Bundle RBS 3.2.2Soutaro Matsumoto2023-09-281-1/+1
|
* Rewrite Integer#times in Ruby (#8388)Takashi Kokubun2023-09-071-1/+1
|
* Update bundled gems list at 2023-09-07git2023-09-071-1/+1
|
* Bundle RBS 3.2.1 (#8306)Soutaro Matsumoto2023-08-301-2/+2
|
* Update bundled gems list at 2023-08-12git2023-08-121-1/+1
|
* Update bundled gems list at 2023-07-31git2023-07-311-1/+1
|
* Update bundled gems list at 2023-07-28git2023-07-281-2/+2
|
* Update bundled gems list at 2023-07-27git2023-07-271-2/+2
|
* Update bundled gems list at 2023-07-20git2023-07-201-1/+1
|
* Fix a CI failure on rbsTakashi Kokubun2023-07-131-1/+1
| | | | This commit applies https://github.com/ruby/rbs/pull/1374.
* Update bundled gems list at 2023-06-25git2023-06-251-1/+1
|
* Update bundled gems list at 2023-06-17git2023-06-171-1/+1
|
* Removed rake-compiler dependency for test-bundled-gemsHiroshi SHIBATA2023-06-141-1/+1
| | | | It's needless with racc-1.7.1
* Show prerequisites for compile taskNobuyoshi Nakada2023-06-141-1/+2
|
* Allow test-unit-ruby-core files to be loaded from bundled gemsNobuyoshi Nakada2023-06-142-0/+10
| | | | | Separate the directly from the customized test-unit, since it may not work with bundled gems.
* Update bundled gems list at 2023-06-13git2023-06-131-1/+1
|
* Update bundled gems list at 2023-06-11git2023-06-111-1/+1
|
* Bump up racc-1.7.0Hiroshi SHIBATA2023-06-081-1/+1
|
* Try to promote racc as bundled gemsHiroshi SHIBATA2023-06-081-0/+1
|
* Update bundled gems list at 2023-05-25git2023-05-251-1/+1
|
* 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.