File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353 ruby-version : ${{ matrix.ruby }}
5454
5555 - name : Install dependencies
56- run : bundle install
56+ run : |
57+ if [[ "${{ matrix.ruby }}" < "3.1" ]]; then
58+ gem install bundler:2.4.22
59+ bundle _2.4.22_ install
60+ else
61+ bundle install
62+ fi
5763
5864 - name : Run tests
5965 run : bundle exec rake test
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ source 'https://rubygems.org'
66gemspec
77
88gem 'benchmark'
9+ gem 'irb'
910gem 'minitest' , '5.26.1'
1011gem 'pry' , '0.15.2'
1112gem 'rake' , '13.3.1'
13+ gem 'rdoc'
1214gem 'rubocop' , '1.81.7'
1315gem 'rubocop-minitest' , '0.38.2'
1416gem 'rubocop-rake' , '0.7.1'
Original file line number Diff line number Diff line change 1111 benchmark (0.5.0 )
1212 coderay (1.1.3 )
1313 concurrent-ruby (1.3.5 )
14+ date (3.5.1 )
1415 docile (1.4.1 )
16+ erb (6.0.1 )
1517 i18n (1.14.7 )
1618 concurrent-ruby (~> 1.0 )
19+ io-console (0.8.2 )
20+ irb (1.16.0 )
21+ pp (>= 0.6.0 )
22+ rdoc (>= 4.0.0 )
23+ reline (>= 0.4.2 )
1724 json (2.16.0 )
1825 language_server-protocol (3.17.0.5 )
1926 lint_roller (1.1.0 )
2431 ast (~> 2.4.1 )
2532 racc
2633 power_assert (3.0.1 )
34+ pp (0.6.3 )
35+ prettyprint
36+ prettyprint (0.2.0 )
2737 prism (1.6.0 )
2838 pry (0.15.2 )
2939 coderay (~> 1.1 )
3040 method_source (~> 1.0 )
41+ psych (5.3.1 )
42+ date
43+ stringio
3144 racc (1.8.1 )
3245 rainbow (3.1.1 )
3346 rake (13.3.1 )
47+ rdoc (7.0.3 )
48+ erb
49+ psych (>= 4.0.0 )
50+ tsort
3451 regexp_parser (2.11.3 )
52+ reline (0.6.3 )
53+ io-console (~> 0.5 )
3554 rubocop (1.81.7 )
3655 json (~> 2.3 )
3756 language_server-protocol (~> 3.17.0.2 )
6079 simplecov_json_formatter (~> 0.1 )
6180 simplecov-html (0.13.2 )
6281 simplecov_json_formatter (0.1.4 )
82+ stringio (3.2.0 )
6383 test-unit (3.7.1 )
6484 power_assert
6585 timecop (0.9.10 )
86+ tsort (0.2.0 )
6687 unicode-display_width (3.2.0 )
6788 unicode-emoji (~> 4.1 )
6889 unicode-emoji (4.1.0 )
@@ -75,9 +96,11 @@ PLATFORMS
7596DEPENDENCIES
7697 benchmark
7798 faker !
99+ irb
78100 minitest (= 5.26.1 )
79101 pry (= 0.15.2 )
80102 rake (= 13.3.1 )
103+ rdoc
81104 rubocop (= 1.81.7 )
82105 rubocop-minitest (= 0.38.2 )
83106 rubocop-rake (= 0.7.1 )
@@ -87,4 +110,4 @@ DEPENDENCIES
87110 yard (= 0.9.37 )
88111
89112BUNDLED WITH
90- 2.4.22
113+ 4.0.3
You can’t perform that action at this time.
0 commit comments