Skip to content

Commit 561862b

Browse files
Merge pull request #3165 from faker-ruby/sb-warnings-ruby-4
Bump bundler version
2 parents a8d0ddb + ef6cace commit 561862b

3 files changed

Lines changed: 33 additions & 2 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,13 @@ jobs:
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

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ source 'https://rubygems.org'
66
gemspec
77

88
gem 'benchmark'
9+
gem 'irb'
910
gem 'minitest', '5.26.1'
1011
gem 'pry', '0.15.2'
1112
gem 'rake', '13.3.1'
13+
gem 'rdoc'
1214
gem 'rubocop', '1.81.7'
1315
gem 'rubocop-minitest', '0.38.2'
1416
gem 'rubocop-rake', '0.7.1'

Gemfile.lock

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@ GEM
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)
@@ -24,14 +31,26 @@ GEM
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)
@@ -60,9 +79,11 @@ GEM
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
7596
DEPENDENCIES
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

89112
BUNDLED WITH
90-
2.4.22
113+
4.0.3

0 commit comments

Comments
 (0)