Skip to content

Commit cf66bad

Browse files
authored
Update rubocop to 1.25.1 (#312)
- General bundle update. - Update the docs too.
1 parent a2aa552 commit cf66bad

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ gem "activesupport", require: false
66
gem "mry", require: false
77
gem "parser"
88
gem "pry", require: false
9-
gem "rubocop", "1.25.0", require: false
9+
gem "rubocop", "1.25.1", require: false
1010
gem "rubocop-i18n", require: false
1111
gem "rubocop-graphql", require: false
1212
gem "rubocop-minitest", require: false

Gemfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GEM
1010
coderay (1.1.3)
1111
concurrent-ruby (1.1.9)
1212
diff-lcs (1.5.0)
13-
i18n (1.8.11)
13+
i18n (1.9.1)
1414
concurrent-ruby (~> 1.0)
1515
method_source (1.0.0)
1616
minitest (5.15.0)
@@ -31,16 +31,16 @@ GEM
3131
rspec-core (~> 3.10.0)
3232
rspec-expectations (~> 3.10.0)
3333
rspec-mocks (~> 3.10.0)
34-
rspec-core (3.10.1)
34+
rspec-core (3.10.2)
3535
rspec-support (~> 3.10.0)
3636
rspec-expectations (3.10.2)
3737
diff-lcs (>= 1.2.0, < 2.0)
3838
rspec-support (~> 3.10.0)
39-
rspec-mocks (3.10.2)
39+
rspec-mocks (3.10.3)
4040
diff-lcs (>= 1.2.0, < 2.0)
4141
rspec-support (~> 3.10.0)
4242
rspec-support (3.10.3)
43-
rubocop (1.25.0)
43+
rubocop (1.25.1)
4444
parallel (~> 1.10)
4545
parser (>= 3.1.0.0)
4646
rainbow (>= 2.2.2, < 4.0)
@@ -55,7 +55,7 @@ GEM
5555
rubocop (>= 0.87, < 2)
5656
rubocop-i18n (3.0.0)
5757
rubocop (~> 1.0)
58-
rubocop-minitest (0.17.0)
58+
rubocop-minitest (0.17.1)
5959
rubocop (>= 0.90, < 2.0)
6060
rubocop-performance (1.13.2)
6161
rubocop (>= 1.7.0, < 2.0)
@@ -66,7 +66,7 @@ GEM
6666
rubocop (>= 1.7.0, < 2.0)
6767
rubocop-rake (0.6.0)
6868
rubocop (~> 1.0)
69-
rubocop-rspec (2.7.0)
69+
rubocop-rspec (2.8.0)
7070
rubocop (~> 1.19)
7171
rubocop-sequel (0.3.3)
7272
rubocop (~> 1.0)
@@ -93,7 +93,7 @@ DEPENDENCIES
9393
pry
9494
rake
9595
rspec
96-
rubocop (= 1.25.0)
96+
rubocop (= 1.25.1)
9797
rubocop-graphql
9898
rubocop-i18n
9999
rubocop-minitest

config/contents/naming/method_parameter_name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ restricted names that will always register an offense.
2121
num1 * num2
2222
end
2323

24-
# With `MinArgNameLength` set to number greater than 1
24+
# With `MinNameLength` set to number greater than 1
2525
def baz(a, b, c)
2626
do_stuff(a, b, c)
2727
end

0 commit comments

Comments
 (0)