Skip to content

Commit ef6cace

Browse files
Fix irb and rdoc warnings
After bumping bundler's version, running a faker console showed these warnings: ``` faker/Rakefile:12: warning: irb was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0. You can add irb to your Gemfile or gemspec to silence this warning. irb/input-method.rb:278: warning: rdoc was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0. You can add rdoc to your Gemfile or gemspec to silence this warning. ```
1 parent 123461d commit ef6cace

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

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: 23 additions & 0 deletions
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)

0 commit comments

Comments
 (0)