Skip to content

Commit 08e2832

Browse files
authored
Merge pull request #441 from jcoyne/update-rubocop
Update rubocop
2 parents e87c504 + d7c3418 commit 08e2832

File tree

3 files changed

+23
-13
lines changed

3 files changed

+23
-13
lines changed

.rubocop.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Layout/LineLength:
1616
Metrics/ClassLength:
1717
Enabled: false
1818

19+
Style/FetchEnvVar:
20+
Enabled: false
21+
1922
Style/StringLiterals:
2023
Enabled: false
2124

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Next
22
* Add key setup to v3 example in README
33
* Remove unnecessary id from textarea - This was unused and may cause accessability concerns if there is more than one recaptcha on the page due to multiple elements with the same id
4+
* Update to latest version of rubocop
45

56
## 5.16.0
67
* Allow usage of `options[:turbo]` as well as `options[:turbolinks]` for `recaptcha_v3`

Gemfile.lock

+19-13
Original file line numberDiff line numberDiff line change
@@ -18,41 +18,47 @@ GEM
1818
hashdiff (0.3.9)
1919
i18n (1.6.0)
2020
concurrent-ruby (~> 1.0)
21+
json (2.7.1)
22+
language_server-protocol (3.17.0.3)
2123
maxitest (3.1.0)
2224
minitest (>= 5.0.0, < 5.12.0)
2325
metaclass (0.0.4)
2426
method_source (0.9.2)
2527
minitest (5.11.3)
2628
mocha (1.8.0)
2729
metaclass (~> 0.0.1)
28-
parallel (1.22.1)
29-
parser (3.1.2.0)
30+
parallel (1.24.0)
31+
parser (3.3.0.5)
3032
ast (~> 2.4.1)
33+
racc
3134
pry (0.12.2)
3235
coderay (~> 1.1.0)
3336
method_source (~> 0.9.0)
3437
pry-byebug (3.7.0)
3538
byebug (~> 11.0)
3639
pry (~> 0.10)
3740
public_suffix (3.0.3)
41+
racc (1.7.3)
3842
rainbow (3.1.1)
3943
rake (12.3.2)
40-
regexp_parser (2.3.0)
41-
rexml (3.2.5)
42-
rubocop (1.27.0)
44+
regexp_parser (2.9.0)
45+
rexml (3.2.6)
46+
rubocop (1.60.2)
47+
json (~> 2.3)
48+
language_server-protocol (>= 3.17.0)
4349
parallel (~> 1.10)
44-
parser (>= 3.1.0.0)
50+
parser (>= 3.3.0.2)
4551
rainbow (>= 2.2.2, < 4.0)
4652
regexp_parser (>= 1.8, < 3.0)
47-
rexml
48-
rubocop-ast (>= 1.16.0, < 2.0)
53+
rexml (>= 3.2.5, < 4.0)
54+
rubocop-ast (>= 1.30.0, < 2.0)
4955
ruby-progressbar (~> 1.7)
50-
unicode-display_width (>= 1.4.0, < 3.0)
51-
rubocop-ast (1.17.0)
52-
parser (>= 3.1.1.0)
53-
ruby-progressbar (1.11.0)
56+
unicode-display_width (>= 2.4.0, < 3.0)
57+
rubocop-ast (1.30.0)
58+
parser (>= 3.2.1.0)
59+
ruby-progressbar (1.13.0)
5460
safe_yaml (1.0.5)
55-
unicode-display_width (2.1.0)
61+
unicode-display_width (2.5.0)
5662
webmock (3.5.1)
5763
addressable (>= 2.3.6)
5864
crack (>= 0.3.2)

0 commit comments

Comments
 (0)