runger_style 5.4.0 → 5.6.0
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 +7 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +30 -27
- data/lib/runger_style/version.rb +1 -1
- data/rulesets/capybara.yml +1 -1
- data/rulesets/factory_bot.yml +1 -1
- data/rulesets/rspec_rails.yml +1 -1
- 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: 46c8dd4a66ab7a5c4cc4e85f6eb30c32231cd9239e31966ef24ef79dcb784d4f
|
4
|
+
data.tar.gz: 0bcf2c8461c4016d99db10173549f954172704eb35c8244a44f49829d32774b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d65e0c70b7a6951a5d7dcc53c680176f0afe0f043e141548d6c2d9e86ddc942841900879e0caeec350ba3cd8fb7ac579e330dc3a1f08f18b243b37864dd21db5
|
7
|
+
data.tar.gz: 9eaef8530ec93cf560f2ff230363af55971c2e4bc06ee547703e5eab300bf8062404f24119dd6d3dd5dd14763e049ccc3e451a2364d6c4b5944d813a3f80b361
|
data/.github/workflows/ruby.yml
CHANGED
@@ -22,7 +22,13 @@ jobs:
|
|
22
22
|
gem install bundler -v 2.1.4
|
23
23
|
bundle install --jobs 4 --retry 3
|
24
24
|
- name: Run RuboCop
|
25
|
-
run: bin/rubocop --format clang
|
25
|
+
run: bin/rubocop --format clang --color 2> >(tee /tmp/rubocop_stderr >&2)
|
26
|
+
- name: Check that RuboCop didn't write anything to stderr
|
27
|
+
run: |
|
28
|
+
if [[ -s /tmp/rubocop_stderr ]] ; then
|
29
|
+
echo "Error: stderr was not empty" >&2
|
30
|
+
exit 1
|
31
|
+
fi
|
26
32
|
- name: Run RSpec tests
|
27
33
|
run: bin/rspec --format progress
|
28
34
|
- name: Ensure alpha version
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## v5.6.0 (2025-03-10)
|
2
|
+
- Switch from `require` to `plugins` for `rubocop-rspec_rails` ruleset (`rulesets/rspec_rails.yml`).
|
3
|
+
- Switch from `require` to `plugins` for `rubocop-capybara` ruleset (`rulesets/capybara.yml`).
|
4
|
+
|
5
|
+
## v5.5.0 (2025-03-06)
|
6
|
+
- Switch from `require` to `plugins` for `rubocop-factory_bot` ruleset (`rulesets/factory_bot.yml`).
|
7
|
+
|
1
8
|
## v5.4.0 (2025-02-17)
|
2
9
|
- Register `rubocop-rspec` as a plugin (rather than requiring it).
|
3
10
|
|
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: 4ef3e66233451fcbeff3a5f7a616380214379272
|
4
4
|
specs:
|
5
5
|
pry-byebug (3.10.1)
|
6
6
|
pry (>= 0.13)
|
@@ -9,7 +9,7 @@ GIT
|
|
9
9
|
PATH
|
10
10
|
remote: .
|
11
11
|
specs:
|
12
|
-
runger_style (5.
|
12
|
+
runger_style (5.6.0)
|
13
13
|
prism (>= 0.24.0)
|
14
14
|
rubocop (>= 1.72.0)
|
15
15
|
|
@@ -50,7 +50,7 @@ GEM
|
|
50
50
|
language_server-protocol (3.17.0.4)
|
51
51
|
lint_roller (1.1.0)
|
52
52
|
logger (1.6.6)
|
53
|
-
memo_wise (1.
|
53
|
+
memo_wise (1.11.0)
|
54
54
|
method_source (1.1.0)
|
55
55
|
minitest (5.25.4)
|
56
56
|
parallel (1.26.3)
|
@@ -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.11)
|
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.73.2)
|
93
93
|
json (~> 2.3)
|
94
94
|
language_server-protocol (~> 3.17.0.2)
|
95
95
|
lint_roller (~> 1.1.0)
|
@@ -100,17 +100,19 @@ 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.38.
|
103
|
+
rubocop-ast (1.38.1)
|
104
104
|
parser (>= 3.3.1.0)
|
105
|
-
rubocop-capybara (2.
|
106
|
-
|
107
|
-
|
108
|
-
|
105
|
+
rubocop-capybara (2.22.0)
|
106
|
+
lint_roller (~> 1.1)
|
107
|
+
rubocop (~> 1.72, >= 1.72.1)
|
108
|
+
rubocop-factory_bot (2.27.0)
|
109
|
+
lint_roller (~> 1.1)
|
110
|
+
rubocop (~> 1.72, >= 1.72.1)
|
109
111
|
rubocop-performance (1.24.0)
|
110
112
|
lint_roller (~> 1.1)
|
111
113
|
rubocop (>= 1.72.1, < 2.0)
|
112
114
|
rubocop-ast (>= 1.38.0, < 2.0)
|
113
|
-
rubocop-rails (2.30.
|
115
|
+
rubocop-rails (2.30.3)
|
114
116
|
activesupport (>= 4.2.0)
|
115
117
|
lint_roller (~> 1.1)
|
116
118
|
rack (>= 1.1)
|
@@ -122,9 +124,10 @@ GEM
|
|
122
124
|
rubocop-rspec (3.5.0)
|
123
125
|
lint_roller (~> 1.1)
|
124
126
|
rubocop (~> 1.72, >= 1.72.1)
|
125
|
-
rubocop-rspec_rails (2.
|
126
|
-
|
127
|
-
rubocop
|
127
|
+
rubocop-rspec_rails (2.31.0)
|
128
|
+
lint_roller (~> 1.1)
|
129
|
+
rubocop (~> 1.72, >= 1.72.1)
|
130
|
+
rubocop-rspec (~> 3.5)
|
128
131
|
ruby-progressbar (1.13.0)
|
129
132
|
runger_byebug (11.4.0)
|
130
133
|
irb
|
@@ -136,13 +139,13 @@ GEM
|
|
136
139
|
slop (~> 4.8)
|
137
140
|
securerandom (0.4.1)
|
138
141
|
slop (4.10.1)
|
139
|
-
stringio (3.1.
|
142
|
+
stringio (3.1.5)
|
140
143
|
tzinfo (2.0.6)
|
141
144
|
concurrent-ruby (~> 1.0)
|
142
145
|
unicode-display_width (3.1.4)
|
143
146
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
144
147
|
unicode-emoji (4.0.4)
|
145
|
-
uri (1.0.
|
148
|
+
uri (1.0.3)
|
146
149
|
|
147
150
|
PLATFORMS
|
148
151
|
ruby
|
@@ -183,7 +186,7 @@ CHECKSUMS
|
|
183
186
|
language_server-protocol (3.17.0.4) sha256=c484626478664fd13482d8180947c50a8590484b1258b99b7aedb3b69df89669
|
184
187
|
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
185
188
|
logger (1.6.6) sha256=dd618d24e637715472732e7eed02e33cfbdf56deaad225edd0f1f89d38024017
|
186
|
-
memo_wise (1.
|
189
|
+
memo_wise (1.11.0) sha256=06ef23a1edb6b8ee4f37d950bba04836b437b4d1036e45d24c2fd2f25b5490c3
|
187
190
|
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
188
191
|
minitest (5.25.4) sha256=9cf2cae25ac4dfc90c988ebc3b917f53c054978b673273da1bd20bcb0778f947
|
189
192
|
parallel (1.26.3) sha256=d86babb7a2b814be9f4b81587bf0b6ce2da7d45969fab24d8ae4bf2bb4d4c7ef
|
@@ -195,7 +198,7 @@ CHECKSUMS
|
|
195
198
|
pry-byebug (3.10.1)
|
196
199
|
psych (5.2.3) sha256=84a54bb952d14604fea22d99938348814678782f58b12648fcdfa4d2fce859ee
|
197
200
|
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
198
|
-
rack (3.1.
|
201
|
+
rack (3.1.11) sha256=2b1111a754890d57e7bccefe3a8be28c0f9c02b43433b5a1276c07773e16e8f7
|
199
202
|
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
200
203
|
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
201
204
|
rdoc (6.12.0) sha256=7d6f706e070bffa5d18a448f24076cbfb34923a99c1eab842aa18e6ca69f56e0
|
@@ -206,26 +209,26 @@ CHECKSUMS
|
|
206
209
|
rspec-expectations (3.13.3) sha256=0e6b5af59b900147698ea0ff80456c4f2e69cac4394fbd392fbd1ca561f66c58
|
207
210
|
rspec-mocks (3.13.2) sha256=2327335def0e1665325a9b617e3af9ae20272741d80ac550336309a7c59abdef
|
208
211
|
rspec-support (3.13.2) sha256=cea3a2463fd9b84b9dcc9685efd80ea701aa8f7b3decb3b3ce795ed67737dbec
|
209
|
-
rubocop (1.
|
210
|
-
rubocop-ast (1.38.
|
211
|
-
rubocop-capybara (2.
|
212
|
-
rubocop-factory_bot (2.
|
212
|
+
rubocop (1.73.2) sha256=35cd1b1365ba97234323fe771abcecd09c9b77098464cd726c76aa7d9bc12b5d
|
213
|
+
rubocop-ast (1.38.1) sha256=80ecbe2ac9bb26693cab9405bf72b41b85a1f909f20f021b983c32c2e7d857fe
|
214
|
+
rubocop-capybara (2.22.0) sha256=9c3a6704ed0243e5332fdc45112b4bb90fc4cfd23a7f175f74af4a01e21627d0
|
215
|
+
rubocop-factory_bot (2.27.0) sha256=de9918bc4e1406b3025da87c5c34c91dd6c3e802cd59339790631f963a5652ba
|
213
216
|
rubocop-performance (1.24.0) sha256=e5bd39ff3e368395b9af886927cc37f5892f43db4bd6c8526594352d5b4440b5
|
214
|
-
rubocop-rails (2.30.
|
217
|
+
rubocop-rails (2.30.3) sha256=fc5a6506daa916d15e282cc806943afa64a020bf592b93a94025d89a2a78a715
|
215
218
|
rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
|
216
219
|
rubocop-rspec (3.5.0) sha256=710c942fe1af884ba8eea75cbb8bdbb051929a2208880a6fc2e2dce1eed5304c
|
217
|
-
rubocop-rspec_rails (2.
|
220
|
+
rubocop-rspec_rails (2.31.0) sha256=775375e18a26a1184a812ef3054b79d218e85601b9ae897f38f8be24dddf1f45
|
218
221
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
219
222
|
runger_byebug (11.4.0) sha256=569e22ba2215f57e7f69e145fcb63be401e29fcd312f7936d813e12d0c7bbee6
|
220
223
|
runger_release_assistant (2.0.0) sha256=f4f5708291eaeef1b881208f87a494877fe768739d6e96b7293fc335b28a3865
|
221
|
-
runger_style (5.
|
224
|
+
runger_style (5.6.0)
|
222
225
|
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
|
223
226
|
slop (4.10.1) sha256=844322b5ffcf17ed4815fdb173b04a20dd82b4fd93e3744c88c8fafea696d9c7
|
224
|
-
stringio (3.1.
|
227
|
+
stringio (3.1.5) sha256=bca92461515a131535743bc81d5559fa1de7d80cff9a654d6c0af6f9f27e35c8
|
225
228
|
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
226
229
|
unicode-display_width (3.1.4) sha256=8caf2af1c0f2f07ec89ef9e18c7d88c2790e217c482bfc78aaa65eadd5415ac1
|
227
230
|
unicode-emoji (4.0.4) sha256=2c2c4ef7f353e5809497126285a50b23056cc6e61b64433764a35eff6c36532a
|
228
|
-
uri (1.0.
|
231
|
+
uri (1.0.3) sha256=e9f2244608eea2f7bc357d954c65c910ce0399ca5e18a7a29207ac22d8767011
|
229
232
|
|
230
233
|
RUBY VERSION
|
231
234
|
ruby 3.4.2p28
|
data/lib/runger_style/version.rb
CHANGED
data/rulesets/capybara.yml
CHANGED
data/rulesets/factory_bot.yml
CHANGED
data/rulesets/rspec_rails.yml
CHANGED
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.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Runger
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-10 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: prism
|