runger_style 5.7.0 → 5.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +9 -3
- data/CHANGELOG.md +15 -0
- data/Gemfile.lock +29 -28
- data/README.md +8 -7
- data/lib/runger_style/cops/default/multiline_method_arguments_line_breaks.rb +0 -2
- data/lib/runger_style/version.rb +1 -1
- data/rulesets/default.yml +3 -1
- data/rulesets/rails.yml +9 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67a8adad85fc651d0d25455a53e201ef8eb6171394391d5f2d67ac8fbdc3f664
|
4
|
+
data.tar.gz: 1a232415f9a049e37f272d513febde3afd4ece631e1caf95a7418a1de1755ccb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba2e7435d4e6b8fc09a95ddd2c4bf1f7e2c274dee47cc2a8e6e7cc13f7afaf36ee26335dc70a49743f30fd6235cced814efe68751879b73d14a67ec2ec8e5d09
|
7
|
+
data.tar.gz: ef71bd1d5ffc4a10d086f4357db4b58121550e70196d869c5791fc4691b29421564e87d7d14c152ffac149c54bb9ab5eaf985f3204700d3187384e0b3d27decc
|
data/.github/workflows/ruby.yml
CHANGED
@@ -12,28 +12,34 @@ jobs:
|
|
12
12
|
build:
|
13
13
|
runs-on: ubuntu-latest
|
14
14
|
steps:
|
15
|
-
-
|
15
|
+
- name: Check out code
|
16
|
+
uses: actions/checkout@v4
|
17
|
+
|
16
18
|
- name: Set up Ruby
|
17
19
|
uses: ruby/setup-ruby@v1
|
18
20
|
with:
|
19
21
|
bundler-cache: true
|
22
|
+
|
20
23
|
- name: Set up
|
21
24
|
run: |
|
22
25
|
gem install bundler -v 2.1.4
|
23
26
|
bundle install --jobs 4 --retry 3
|
27
|
+
|
24
28
|
- name: Run RuboCop
|
25
29
|
run: bin/rubocop --format clang --color 2> >(tee /tmp/rubocop_stderr >&2)
|
30
|
+
|
26
31
|
- name: Check that RuboCop didn't write anything to stderr
|
27
32
|
run: |
|
28
33
|
if [[ -s /tmp/rubocop_stderr ]] ; then
|
29
34
|
echo "Error: stderr was not empty" >&2
|
30
35
|
exit 1
|
31
36
|
fi
|
37
|
+
|
32
38
|
- name: Run RSpec tests
|
33
39
|
run: bin/rspec --format progress
|
34
|
-
|
35
|
-
run: grep alpha $(find . -type f -name version.rb)
|
40
|
+
|
36
41
|
- name: Ensure no git diff
|
37
42
|
run: git diff --exit-code && git diff-index --quiet --cached HEAD
|
43
|
+
|
38
44
|
- name: Ensure "## Unreleased" is in CHANGELOG.md
|
39
45
|
run: grep "^## Unreleased" CHANGELOG.md
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## Unreleased
|
2
|
+
[no unreleased changes yet]
|
3
|
+
|
4
|
+
## v5.8.1 (2025-03-22)
|
5
|
+
### Internal
|
6
|
+
- Remove check for alpha version from GitHub Action.
|
7
|
+
|
8
|
+
## v5.8.0 (2025-03-22)
|
9
|
+
- Disable `Metrics/PerceivedComplexity` and `Metrics/MethodLength`.
|
10
|
+
- Allowlist `find_by_hashid` and `find_by_hashid!` for `Rails/DynamicFindBy`.
|
11
|
+
- Add `Aws.config` to `AllowedReceivers` for `Rails/SaveBang`.
|
12
|
+
|
13
|
+
### Internal
|
14
|
+
- Turn off warnings when running RSpec.
|
15
|
+
|
1
16
|
## v5.7.0 (2025-03-10)
|
2
17
|
- Disable `Capybara/AmbiguousClick` and `Capybara/ClickLinkOrButtonStyle` and add `RungerStyle/ClickAmbiguously`, which does the opposite of `Capybara/AmbiguousClick`, i.e. it requires the use of `click_on` and forbids the use of `click_button` or `click_link`.
|
3
18
|
|
data/Gemfile.lock
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
GIT
|
2
2
|
remote: https://github.com/davidrunger/pry-byebug.git
|
3
|
-
revision:
|
3
|
+
revision: f4a00d93566ef28f87e03210ea94d303fa544f2f
|
4
4
|
specs:
|
5
5
|
pry-byebug (3.10.1)
|
6
6
|
pry (>= 0.13)
|
@@ -9,14 +9,14 @@ GIT
|
|
9
9
|
PATH
|
10
10
|
remote: .
|
11
11
|
specs:
|
12
|
-
runger_style (5.
|
12
|
+
runger_style (5.8.1)
|
13
13
|
prism (>= 0.24.0)
|
14
14
|
rubocop (>= 1.72.0)
|
15
15
|
|
16
16
|
GEM
|
17
17
|
remote: https://rubygems.org/
|
18
18
|
specs:
|
19
|
-
activesupport (8.0.
|
19
|
+
activesupport (8.0.2)
|
20
20
|
base64
|
21
21
|
benchmark (>= 0.3)
|
22
22
|
bigdecimal
|
@@ -29,7 +29,7 @@ GEM
|
|
29
29
|
securerandom (>= 0.3)
|
30
30
|
tzinfo (~> 2.0, >= 2.0.5)
|
31
31
|
uri (>= 0.13.1)
|
32
|
-
ast (2.4.
|
32
|
+
ast (2.4.3)
|
33
33
|
base64 (0.2.0)
|
34
34
|
benchmark (0.4.0)
|
35
35
|
bigdecimal (3.1.9)
|
@@ -46,21 +46,21 @@ GEM
|
|
46
46
|
pp (>= 0.6.0)
|
47
47
|
rdoc (>= 4.0.0)
|
48
48
|
reline (>= 0.4.2)
|
49
|
-
json (2.10.
|
49
|
+
json (2.10.2)
|
50
50
|
language_server-protocol (3.17.0.4)
|
51
51
|
lint_roller (1.1.0)
|
52
52
|
logger (1.6.6)
|
53
53
|
memo_wise (1.11.0)
|
54
54
|
method_source (1.1.0)
|
55
|
-
minitest (5.25.
|
55
|
+
minitest (5.25.5)
|
56
56
|
parallel (1.26.3)
|
57
|
-
parser (3.3.7.
|
57
|
+
parser (3.3.7.2)
|
58
58
|
ast (~> 2.4.1)
|
59
59
|
racc
|
60
60
|
pp (0.6.2)
|
61
61
|
prettyprint
|
62
62
|
prettyprint (0.2.0)
|
63
|
-
prism (1.
|
63
|
+
prism (1.4.0)
|
64
64
|
pry (0.15.2)
|
65
65
|
coderay (~> 1.1)
|
66
66
|
method_source (~> 1.0)
|
@@ -68,7 +68,7 @@ GEM
|
|
68
68
|
date
|
69
69
|
stringio
|
70
70
|
racc (1.8.1)
|
71
|
-
rack (3.1.
|
71
|
+
rack (3.1.12)
|
72
72
|
rainbow (3.1.1)
|
73
73
|
rake (13.2.1)
|
74
74
|
rdoc (6.12.0)
|
@@ -89,7 +89,7 @@ GEM
|
|
89
89
|
diff-lcs (>= 1.2.0, < 2.0)
|
90
90
|
rspec-support (~> 3.13.0)
|
91
91
|
rspec-support (3.13.2)
|
92
|
-
rubocop (1.
|
92
|
+
rubocop (1.74.0)
|
93
93
|
json (~> 2.3)
|
94
94
|
language_server-protocol (~> 3.17.0.2)
|
95
95
|
lint_roller (~> 1.1.0)
|
@@ -100,12 +100,12 @@ GEM
|
|
100
100
|
rubocop-ast (>= 1.38.0, < 2.0)
|
101
101
|
ruby-progressbar (~> 1.7)
|
102
102
|
unicode-display_width (>= 2.4.0, < 4.0)
|
103
|
-
rubocop-ast (1.
|
104
|
-
parser (>= 3.3.
|
105
|
-
rubocop-capybara (2.22.
|
103
|
+
rubocop-ast (1.41.0)
|
104
|
+
parser (>= 3.3.7.2)
|
105
|
+
rubocop-capybara (2.22.1)
|
106
106
|
lint_roller (~> 1.1)
|
107
107
|
rubocop (~> 1.72, >= 1.72.1)
|
108
|
-
rubocop-factory_bot (2.27.
|
108
|
+
rubocop-factory_bot (2.27.1)
|
109
109
|
lint_roller (~> 1.1)
|
110
110
|
rubocop (~> 1.72, >= 1.72.1)
|
111
111
|
rubocop-performance (1.24.0)
|
@@ -132,10 +132,11 @@ GEM
|
|
132
132
|
runger_byebug (11.4.0)
|
133
133
|
irb
|
134
134
|
reline
|
135
|
-
runger_release_assistant (
|
135
|
+
runger_release_assistant (4.3.1)
|
136
136
|
activesupport (>= 6)
|
137
137
|
memo_wise (>= 1.7)
|
138
138
|
rainbow (>= 3.0)
|
139
|
+
rake (>= 13.2.1)
|
139
140
|
slop (~> 4.8)
|
140
141
|
securerandom (0.4.1)
|
141
142
|
slop (4.10.1)
|
@@ -168,8 +169,8 @@ DEPENDENCIES
|
|
168
169
|
runger_style!
|
169
170
|
|
170
171
|
CHECKSUMS
|
171
|
-
activesupport (8.0.
|
172
|
-
ast (2.4.
|
172
|
+
activesupport (8.0.2) sha256=8565cddba31b900cdc17682fd66ecd020441e3eef320a9930285394e8c07a45e
|
173
|
+
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
173
174
|
base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
|
174
175
|
benchmark (0.4.0) sha256=0f12f8c495545e3710c3e4f0480f63f06b4c842cc94cec7f33a956f5180e874a
|
175
176
|
bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
|
@@ -182,23 +183,23 @@ CHECKSUMS
|
|
182
183
|
i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
|
183
184
|
io-console (0.8.0) sha256=cd6a9facbc69871d69b2cb8b926fc6ea7ef06f06e505e81a64f14a470fddefa2
|
184
185
|
irb (1.15.1) sha256=d9bca745ac4207a8b728a52b98b766ca909b86ff1a504bcde3d6f8c84faae890
|
185
|
-
json (2.10.
|
186
|
+
json (2.10.2) sha256=34e0eada93022b2a0a3345bb0b5efddb6e9ff5be7c48e409cfb54ff8a36a8b06
|
186
187
|
language_server-protocol (3.17.0.4) sha256=c484626478664fd13482d8180947c50a8590484b1258b99b7aedb3b69df89669
|
187
188
|
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
188
189
|
logger (1.6.6) sha256=dd618d24e637715472732e7eed02e33cfbdf56deaad225edd0f1f89d38024017
|
189
190
|
memo_wise (1.11.0) sha256=06ef23a1edb6b8ee4f37d950bba04836b437b4d1036e45d24c2fd2f25b5490c3
|
190
191
|
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
191
|
-
minitest (5.25.
|
192
|
+
minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
|
192
193
|
parallel (1.26.3) sha256=d86babb7a2b814be9f4b81587bf0b6ce2da7d45969fab24d8ae4bf2bb4d4c7ef
|
193
|
-
parser (3.3.7.
|
194
|
+
parser (3.3.7.2) sha256=c71de9076be0b84459a268581b5aa75e5eeaac892b564430371d1f8eb55fb65f
|
194
195
|
pp (0.6.2) sha256=947ec3120c6f92195f8ee8aa25a7b2c5297bb106d83b41baa02983686577b6ff
|
195
196
|
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
|
196
|
-
prism (1.
|
197
|
+
prism (1.4.0) sha256=dc0e3e00e93160213dc2a65519d9002a4a1e7b962db57d444cf1a71565bb703e
|
197
198
|
pry (0.15.2) sha256=12d54b8640d3fa29c9211dd4ffb08f3fd8bf7a4fd9b5a73ce5b59c8709385b6b
|
198
199
|
pry-byebug (3.10.1)
|
199
200
|
psych (5.2.3) sha256=84a54bb952d14604fea22d99938348814678782f58b12648fcdfa4d2fce859ee
|
200
201
|
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
201
|
-
rack (3.1.
|
202
|
+
rack (3.1.12) sha256=00d83055c89273eb13679ab562767b8826955aa6c4371d7d161deb975c50c540
|
202
203
|
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
203
204
|
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
204
205
|
rdoc (6.12.0) sha256=7d6f706e070bffa5d18a448f24076cbfb34923a99c1eab842aa18e6ca69f56e0
|
@@ -209,10 +210,10 @@ CHECKSUMS
|
|
209
210
|
rspec-expectations (3.13.3) sha256=0e6b5af59b900147698ea0ff80456c4f2e69cac4394fbd392fbd1ca561f66c58
|
210
211
|
rspec-mocks (3.13.2) sha256=2327335def0e1665325a9b617e3af9ae20272741d80ac550336309a7c59abdef
|
211
212
|
rspec-support (3.13.2) sha256=cea3a2463fd9b84b9dcc9685efd80ea701aa8f7b3decb3b3ce795ed67737dbec
|
212
|
-
rubocop (1.
|
213
|
-
rubocop-ast (1.
|
214
|
-
rubocop-capybara (2.22.
|
215
|
-
rubocop-factory_bot (2.27.
|
213
|
+
rubocop (1.74.0) sha256=06138a35d7d11c963d5abc0148b355e3999007cb0225a619940db0e75521379b
|
214
|
+
rubocop-ast (1.41.0) sha256=0eeff9ad3743f42823e3c687cbc15f8c552ff63c9f8e3d35fbafe746977c7c0d
|
215
|
+
rubocop-capybara (2.22.1) sha256=ced88caef23efea53f46e098ff352f8fc1068c649606ca75cb74650970f51c0c
|
216
|
+
rubocop-factory_bot (2.27.1) sha256=9d744b5916778c1848e5fe6777cc69855bd96548853554ec239ba9961b8573fe
|
216
217
|
rubocop-performance (1.24.0) sha256=e5bd39ff3e368395b9af886927cc37f5892f43db4bd6c8526594352d5b4440b5
|
217
218
|
rubocop-rails (2.30.3) sha256=fc5a6506daa916d15e282cc806943afa64a020bf592b93a94025d89a2a78a715
|
218
219
|
rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
|
@@ -220,8 +221,8 @@ CHECKSUMS
|
|
220
221
|
rubocop-rspec_rails (2.31.0) sha256=775375e18a26a1184a812ef3054b79d218e85601b9ae897f38f8be24dddf1f45
|
221
222
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
222
223
|
runger_byebug (11.4.0) sha256=569e22ba2215f57e7f69e145fcb63be401e29fcd312f7936d813e12d0c7bbee6
|
223
|
-
runger_release_assistant (
|
224
|
-
runger_style (5.
|
224
|
+
runger_release_assistant (4.3.1) sha256=3246c925240739eb12b9e6b9526a77ea00fcf0a0941441ff5ffacefb7e3e4d83
|
225
|
+
runger_style (5.8.1)
|
225
226
|
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
|
226
227
|
slop (4.10.1) sha256=844322b5ffcf17ed4815fdb173b04a20dd82b4fd93e3744c88c8fafea696d9c7
|
227
228
|
stringio (3.1.5) sha256=bca92461515a131535743bc81d5559fa1de7d80cff9a654d6c0af6f9f27e35c8
|
data/README.md
CHANGED
@@ -4,21 +4,22 @@ Shared rubocop rules for the preferred Ruby coding style of [@davidrunger][1].
|
|
4
4
|
|
5
5
|
[1]: https://github.com/davidrunger/
|
6
6
|
|
7
|
-
|
7
|
+
## Table of Contents
|
8
8
|
|
9
9
|
<!--ts-->
|
10
|
-
|
10
|
+
* [runger_style](#runger_style)
|
11
11
|
* [Table of Contents](#table-of-contents)
|
12
12
|
* [Installation](#installation)
|
13
13
|
* [Usage](#usage)
|
14
14
|
* [Inspiration / Credits](#inspiration--credits)
|
15
15
|
* [For maintainers](#for-maintainers)
|
16
16
|
|
17
|
-
<!--
|
17
|
+
<!-- Created by https://github.com/ekalinin/github-markdown-toc -->
|
18
|
+
<!-- Added by: david, at: Sat Mar 22 04:48:36 AM CDT 2025 -->
|
18
19
|
|
19
20
|
<!--te-->
|
20
21
|
|
21
|
-
|
22
|
+
## Installation
|
22
23
|
|
23
24
|
Add this to your application's Gemfile:
|
24
25
|
|
@@ -34,7 +35,7 @@ And then run:
|
|
34
35
|
$ bundle install
|
35
36
|
```
|
36
37
|
|
37
|
-
|
38
|
+
## Usage
|
38
39
|
|
39
40
|
Create a `.rubocop.yml` file, including as many of the directives below as appropriate/desired.
|
40
41
|
|
@@ -84,13 +85,13 @@ Then, run:
|
|
84
85
|
$ bundle exec rubocop
|
85
86
|
```
|
86
87
|
|
87
|
-
|
88
|
+
## Inspiration / Credits
|
88
89
|
|
89
90
|
This gem is inspired by (/ largely copied from) https://github.com/percy/percy-style , which was
|
90
91
|
written about here: https://blog.percy.io/share-rubocop-rules-across-all-of-your-repos-f3281fbd71f8
|
91
92
|
.
|
92
93
|
|
93
|
-
|
94
|
+
## For maintainers
|
94
95
|
|
95
96
|
To release a new version, run `bin/release` with an appropriate `--type` option, e.g.:
|
96
97
|
|
@@ -7,7 +7,6 @@ module RungerStyle # rubocop:disable Style/ClassAndModuleChildren
|
|
7
7
|
|
8
8
|
MSG = 'Each argument in a multi-line method call must start on a separate line.'
|
9
9
|
|
10
|
-
# rubocop:disable Metrics/PerceivedComplexity
|
11
10
|
def on_send(node)
|
12
11
|
if node.arguments? && multiline_method_call?(node)
|
13
12
|
# When a method call uses keyword arguments without braces,
|
@@ -34,7 +33,6 @@ module RungerStyle # rubocop:disable Style/ClassAndModuleChildren
|
|
34
33
|
end
|
35
34
|
end
|
36
35
|
end
|
37
|
-
# rubocop:enable Metrics/PerceivedComplexity
|
38
36
|
|
39
37
|
private
|
40
38
|
|
data/lib/runger_style/version.rb
CHANGED
data/rulesets/default.yml
CHANGED
@@ -87,9 +87,11 @@ Metrics/ClassLength:
|
|
87
87
|
Metrics/CyclomaticComplexity:
|
88
88
|
Enabled: false
|
89
89
|
Metrics/MethodLength:
|
90
|
-
|
90
|
+
Enabled: false
|
91
91
|
Metrics/ModuleLength:
|
92
92
|
Enabled: false
|
93
|
+
Metrics/PerceivedComplexity:
|
94
|
+
Enabled: false
|
93
95
|
Naming/BlockForwarding:
|
94
96
|
Enabled: false
|
95
97
|
Naming/InclusiveLanguage:
|
data/rulesets/rails.yml
CHANGED
@@ -18,6 +18,12 @@ Rails/CreateTableWithTimestamps:
|
|
18
18
|
- db/schema.rb
|
19
19
|
Rails/Delegate:
|
20
20
|
Enabled: false
|
21
|
+
Rails/DynamicFindBy:
|
22
|
+
AllowedMethods:
|
23
|
+
- find_by_hashid
|
24
|
+
- find_by_hashid!
|
25
|
+
- find_by_sql
|
26
|
+
- find_by_token_for
|
21
27
|
Rails/EnvironmentVariableAccess:
|
22
28
|
AllowReads: true
|
23
29
|
Rails/I18nLocaleTexts:
|
@@ -33,5 +39,8 @@ Rails/RakeEnvironment:
|
|
33
39
|
Rails/ReversibleMigration:
|
34
40
|
Exclude:
|
35
41
|
- !ruby/regexp /db/migrate/201[1-9].*\.rb\z/
|
42
|
+
Rails/SaveBang:
|
43
|
+
AllowedReceivers:
|
44
|
+
- Aws.config
|
36
45
|
Rails/SchemaComment:
|
37
46
|
Enabled: false
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runger_style
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Runger
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-22 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: prism
|