Skip to content

Commit 091775e

Browse files
klaustopheroliverguenther
authored andcommitted
Update Rubocop gems and properly load them
1 parent a93047f commit 091775e

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

.rubocop.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ require:
88
- rubocop-capybara
99
- rubocop-factory_bot
1010
- rubocop-performance
11-
- rubocop-inflector
1211
- ./config/initializers/inflections.rb
1312

1413
<% if File.exist?('.rubocop-local.yml') %>

Gemfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,12 @@ group :development, :test do
330330

331331
# ruby linting
332332
gem "rubocop", require: false
333-
gem "rubocop-inflector", require: false
333+
gem "rubocop-capybara", require: false
334+
gem "rubocop-factory_bot", require: false
334335
gem "rubocop-performance", require: false
335336
gem "rubocop-rails", require: false
336337
gem "rubocop-rspec", require: false
338+
gem "rubocop-rspec_rails", require: false
337339

338340
# erb linting
339341
gem "erb_lint", require: false

Gemfile.lock

+11-15
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ GEM
940940
actionpack (>= 5.2)
941941
railties (>= 5.2)
942942
retriable (3.1.2)
943-
rexml (3.2.9)
943+
rexml (3.3.0)
944944
strscan
945945
rinku (2.0.6)
946946
roar (1.2.0)
@@ -985,12 +985,8 @@ GEM
985985
parser (>= 3.3.1.0)
986986
rubocop-capybara (2.21.0)
987987
rubocop (~> 1.41)
988-
rubocop-factory_bot (2.26.0)
989-
rubocop (~> 1.41)
990-
rubocop-inflector (0.2.1)
991-
activesupport
992-
rubocop
993-
rubocop-rspec
988+
rubocop-factory_bot (2.26.1)
989+
rubocop (~> 1.61)
994990
rubocop-performance (1.21.0)
995991
rubocop (>= 1.48.1, < 2.0)
996992
rubocop-ast (>= 1.31.1, < 2.0)
@@ -999,13 +995,11 @@ GEM
999995
rack (>= 1.1)
1000996
rubocop (>= 1.33.0, < 2.0)
1001997
rubocop-ast (>= 1.31.1, < 2.0)
1002-
rubocop-rspec (2.31.0)
1003-
rubocop (~> 1.40)
1004-
rubocop-capybara (~> 2.17)
1005-
rubocop-factory_bot (~> 2.22)
1006-
rubocop-rspec_rails (~> 2.28)
1007-
rubocop-rspec_rails (2.29.0)
1008-
rubocop (~> 1.40)
998+
rubocop-rspec (3.0.1)
999+
rubocop (~> 1.61)
1000+
rubocop-rspec_rails (2.30.0)
1001+
rubocop (~> 1.61)
1002+
rubocop-rspec (~> 3, >= 3.0.1)
10091003
ruby-duration (3.2.3)
10101004
activesupport (>= 3.0.0)
10111005
i18n
@@ -1316,10 +1310,12 @@ DEPENDENCIES
13161310
rspec-rails (~> 6.1.0)
13171311
rspec-retry (~> 0.6.1)
13181312
rubocop
1319-
rubocop-inflector
1313+
rubocop-capybara
1314+
rubocop-factory_bot
13201315
rubocop-performance
13211316
rubocop-rails
13221317
rubocop-rspec
1318+
rubocop-rspec_rails
13231319
ruby-duration (~> 3.2.0)
13241320
ruby-prof
13251321
ruby-progressbar (~> 1.13.0)

0 commit comments

Comments
 (0)