Skip to content

Commit e9f1153

Browse files
committed
Upgraded the rubocop dependencies.
Signed-off-by: Hermann Mayer <[email protected]>
1 parent 290d1d7 commit e9f1153

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

.rubocop.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
require:
2-
- rubocop-rspec
3-
41
plugins:
2+
- rubocop-rspec
53
- rubocop-rails
64

75
Rails:
@@ -71,7 +69,7 @@ RSpec/NestedGroups:
7169
Max: 4
7270

7371
# Disable regular Rails spec paths.
74-
RSpec/FilePath:
72+
Rails/FilePath:
7573
Enabled: false
7674

7775
# Because +enqueued_jobs+ is a method not a memoized variable,

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### next
22

33
* Corrected some RuboCop glitches (#10)
4+
* Upgraded the rubocop dependencies (#11)
45

56
### 1.6.0 (30 January 2025)
67

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ gem 'countless', '~> 1.1'
1515
gem 'guard-rspec', '~> 4.7'
1616
gem 'irb', '~> 1.2'
1717
gem 'rspec', '~> 3.12'
18-
gem 'rubocop', '~> 1.28'
19-
gem 'rubocop-rails', '~> 2.14'
20-
gem 'rubocop-rspec', '~> 2.10'
18+
gem 'rubocop'
19+
gem 'rubocop-rails'
20+
gem 'rubocop-rspec'
2121
gem 'simplecov', '>= 0.22'
2222
gem 'yard', '>= 0.9.28'
2323
gem 'yard-activesupport-concern', '>= 0.0.1'

gemfiles/rails_6.1.gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ gem "countless", "~> 1.1"
99
gem "guard-rspec", "~> 4.7"
1010
gem "irb", "~> 1.2"
1111
gem "rspec", "~> 3.12"
12-
gem "rubocop", "~> 1.28"
13-
gem "rubocop-rails", "~> 2.14"
14-
gem "rubocop-rspec", "~> 2.10"
12+
gem "rubocop"
13+
gem "rubocop-rails"
14+
gem "rubocop-rspec"
1515
gem "simplecov", ">= 0.22"
1616
gem "yard", ">= 0.9.28"
1717
gem "yard-activesupport-concern", ">= 0.0.1"

gemfiles/rails_7.1.gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ gem "countless", "~> 1.1"
99
gem "guard-rspec", "~> 4.7"
1010
gem "irb", "~> 1.2"
1111
gem "rspec", "~> 3.12"
12-
gem "rubocop", "~> 1.28"
13-
gem "rubocop-rails", "~> 2.14"
14-
gem "rubocop-rspec", "~> 2.10"
12+
gem "rubocop"
13+
gem "rubocop-rails"
14+
gem "rubocop-rspec"
1515
gem "simplecov", ">= 0.22"
1616
gem "yard", ">= 0.9.28"
1717
gem "yard-activesupport-concern", ">= 0.0.1"

0 commit comments

Comments
 (0)