Skip to content

Commit 4bac3c0

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

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:
@@ -60,7 +58,7 @@ RSpec/NestedGroups:
6058
Max: 4
6159

6260
# Disable regular Rails spec paths.
63-
RSpec/FilePath:
61+
Rails/FilePath:
6462
Enabled: false
6563

6664
# Because we just implemented the ActiveRecord API.

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Corrected some RuboCop glitches (#17)
44
* Upgraded PostgreSQL to 17.4. (#18)
5+
* Upgraded the rubocop dependencies (#19)
56

67
### 1.6.0 (30 January 2025)
78

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ gem 'pg', '~> 1.4'
1616
gem 'railties', '>= 6.1'
1717
gem 'rake', '~> 13.0'
1818
gem 'rspec', '~> 3.12'
19-
gem 'rubocop', '~> 1.28'
20-
gem 'rubocop-rails', '~> 2.14'
21-
gem 'rubocop-rspec', '~> 2.10'
19+
gem 'rubocop'
20+
gem 'rubocop-rails'
21+
gem 'rubocop-rspec'
2222
gem 'simplecov', '>= 0.22'
2323
gem 'yard', '>= 0.9.28'
2424
gem 'yard-activesupport-concern', '>= 0.0.1'

gemfiles/rails_6.1.gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ gem "pg", "~> 1.4"
1010
gem "railties", ">= 6.1"
1111
gem "rake", "~> 13.0"
1212
gem "rspec", "~> 3.12"
13-
gem "rubocop", "~> 1.28"
14-
gem "rubocop-rails", "~> 2.14"
15-
gem "rubocop-rspec", "~> 2.10"
13+
gem "rubocop"
14+
gem "rubocop-rails"
15+
gem "rubocop-rspec"
1616
gem "simplecov", ">= 0.22"
1717
gem "yard", ">= 0.9.28"
1818
gem "yard-activesupport-concern", ">= 0.0.1"

gemfiles/rails_7.1.gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ gem "pg", "~> 1.4"
1010
gem "railties", ">= 6.1"
1111
gem "rake", "~> 13.0"
1212
gem "rspec", "~> 3.12"
13-
gem "rubocop", "~> 1.28"
14-
gem "rubocop-rails", "~> 2.14"
15-
gem "rubocop-rspec", "~> 2.10"
13+
gem "rubocop"
14+
gem "rubocop-rails"
15+
gem "rubocop-rspec"
1616
gem "simplecov", ">= 0.22"
1717
gem "yard", ">= 0.9.28"
1818
gem "yard-activesupport-concern", ">= 0.0.1"

0 commit comments

Comments
 (0)