rubocop-lts 2.3.0 → 2.3.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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +79 -8
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +263 -27
- data/FUNDING.md +70 -0
- data/LICENSE.md +10 -0
- data/README.md +606 -151
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +13 -33
- data/certs/pboling.pem +27 -0
- data/config/rails.yml +0 -0
- data/config/rails_rspec.yml +0 -0
- data/config/rspec.yml +0 -0
- data/config/ruby.yml +0 -0
- data/config/ruby_rspec.yml +0 -0
- data/config/rubygem.yml +0 -0
- data/config/rubygem_rspec.yml +0 -0
- data/lib/rubocop/lts/version.rb +2 -2
- data/lib/rubocop/lts.rb +0 -0
- data/sig/rubocop/lts/version.rbs +8 -0
- data/sig/rubocop/lts.rbs +0 -1
- data.tar.gz.sig +0 -0
- metadata +221 -31
- metadata.gz.sig +0 -0
- data/LICENSE.txt +0 -21
data/RUBOCOP.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# RuboCop Usage Guide
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
A tale of two RuboCop plugin gems.
|
|
6
|
+
|
|
7
|
+
### RuboCop Gradual
|
|
8
|
+
|
|
9
|
+
This project uses `rubocop_gradual` instead of vanilla RuboCop for code style checking. The `rubocop_gradual` tool allows for gradual adoption of RuboCop rules by tracking violations in a lock file.
|
|
10
|
+
|
|
11
|
+
### RuboCop LTS
|
|
12
|
+
|
|
13
|
+
This project uses `rubocop-lts` to ensure, on a best-effort basis, compatibility with Ruby >= 1.9.2.
|
|
14
|
+
RuboCop rules are meticulously configured by the `rubocop-lts` family of gems to ensure that a project is compatible with a specific version of Ruby. See: https://rubocop-lts.gitlab.io for more.
|
|
15
|
+
|
|
16
|
+
## Checking RuboCop Violations
|
|
17
|
+
|
|
18
|
+
To check for RuboCop violations in this project, always use:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
bundle exec rake rubocop_gradual:check
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Do not use** the standard RuboCop commands like:
|
|
25
|
+
- `bundle exec rubocop`
|
|
26
|
+
- `rubocop`
|
|
27
|
+
|
|
28
|
+
## Understanding the Lock File
|
|
29
|
+
|
|
30
|
+
The `.rubocop_gradual.lock` file tracks all current RuboCop violations in the project. This allows the team to:
|
|
31
|
+
|
|
32
|
+
1. Prevent new violations while gradually fixing existing ones
|
|
33
|
+
2. Track progress on code style improvements
|
|
34
|
+
3. Ensure CI builds don't fail due to pre-existing violations
|
|
35
|
+
|
|
36
|
+
## Common Commands
|
|
37
|
+
|
|
38
|
+
- **Check violations**
|
|
39
|
+
- `bundle exec rake rubocop_gradual`
|
|
40
|
+
- `bundle exec rake rubocop_gradual:check`
|
|
41
|
+
- **(Safe) Autocorrect violations, and update lockfile if no new violations**
|
|
42
|
+
- `bundle exec rake rubocop_gradual:autocorrect`
|
|
43
|
+
- **Force update the lock file (w/o autocorrect) to match violations present in code**
|
|
44
|
+
- `bundle exec rake rubocop_gradual:force_update`
|
|
45
|
+
|
|
46
|
+
## Workflow
|
|
47
|
+
|
|
48
|
+
1. Before submitting a PR, run `bundle exec rake rubocop_gradual:autocorrect`
|
|
49
|
+
a. or just the default `bundle exec rake`, as autocorrection is a pre-requisite of the default task.
|
|
50
|
+
2. If there are new violations, either:
|
|
51
|
+
- Fix them in your code
|
|
52
|
+
- Run `bundle exec rake rubocop_gradual:force_update` to update the lock file (only for violations you can't fix immediately)
|
|
53
|
+
3. Commit the updated `.rubocop_gradual.lock` file along with your changes
|
|
54
|
+
|
|
55
|
+
## Never add inline RuboCop disables
|
|
56
|
+
|
|
57
|
+
Do not add inline `rubocop:disable` / `rubocop:enable` comments anywhere in the codebase (including specs, except when following the few existing `rubocop:disable` patterns for a rule already being disabled elsewhere in the code). We handle exceptions in two supported ways:
|
|
58
|
+
|
|
59
|
+
- Permanent/structural exceptions: prefer adjusting the RuboCop configuration (e.g., in `.rubocop.yml`) to exclude a rule for a path or file pattern when it makes sense project-wide.
|
|
60
|
+
- Temporary exceptions while improving code: record the current violations in `.rubocop_gradual.lock` via the gradual workflow:
|
|
61
|
+
- `bundle exec rake rubocop_gradual:autocorrect` (preferred; will autocorrect what it can and update the lock only if no new violations were introduced)
|
|
62
|
+
- If needed, `bundle exec rake rubocop_gradual:force_update` (as a last resort when you cannot fix the newly reported violations immediately)
|
|
63
|
+
|
|
64
|
+
In general, treat the rules as guidance to follow; fix violations rather than ignore them. For example, RSpec conventions in this project expect `described_class` to be used in specs that target a specific class under test.
|
|
65
|
+
|
|
66
|
+
## Benefits of rubocop_gradual
|
|
67
|
+
|
|
68
|
+
- Allows incremental adoption of code style rules
|
|
69
|
+
- Prevents CI failures due to pre-existing violations
|
|
70
|
+
- Provides a clear record of code style debt
|
|
71
|
+
- Enables focused efforts on improving code quality over time
|
data/SECURITY.md
CHANGED
|
@@ -2,40 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## Supported Versions
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
|----------|-----------|
|
|
7
|
+
| 2.3.latest | ✅ |
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
## Security contact information
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
| 1.latest | ❌ |
|
|
13
|
-
| 2.latest | ✅ |
|
|
14
|
-
| 3.latest | ❌ |
|
|
15
|
-
| 4.latest | ✅ |
|
|
16
|
-
| 5.latest | ❌ |
|
|
17
|
-
| 6.latest | ✅ |
|
|
18
|
-
| 7.latest | ❌ |
|
|
19
|
-
| 8.latest | ✅ |
|
|
20
|
-
| 9.latest | ❌ |
|
|
21
|
-
| 10.latest | ✅ |
|
|
22
|
-
| 11.latest | ❌ |
|
|
23
|
-
| 12.latest | ✅ |
|
|
24
|
-
| 13.latest | ❌ |
|
|
25
|
-
| 14.latest | ✅ |
|
|
26
|
-
| 15.latest | ❌ |
|
|
27
|
-
| 16.latest | ✅ |
|
|
28
|
-
| 17.latest | ❌ |
|
|
29
|
-
| 18.latest | ✅ |
|
|
30
|
-
| 19.latest | ❌ |
|
|
31
|
-
| 20.latest | ✅ |
|
|
32
|
-
| 21.latest | ❌ |
|
|
33
|
-
| 22.latest | ✅ |
|
|
34
|
-
| 23.latest | ❌ |
|
|
35
|
-
| 24.latest | ✅ |
|
|
11
|
+
To report a security vulnerability, please use the
|
|
12
|
+
[Tidelift security contact](https://tidelift.com/security).
|
|
13
|
+
Tidelift will coordinate the fix and disclosure.
|
|
36
14
|
|
|
37
|
-
##
|
|
15
|
+
## Additional Support
|
|
38
16
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
17
|
+
If you are interested in support for versions older than the latest release,
|
|
18
|
+
please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
|
|
19
|
+
or find other sponsorship links in the [README].
|
|
20
|
+
|
|
21
|
+
[README]: README.md
|
data/certs/pboling.pem
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
|
3
|
+
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
|
4
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
5
|
+
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
6
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
|
7
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
|
8
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
|
9
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
|
10
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
|
11
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
|
12
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
|
13
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
|
14
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
|
15
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
|
16
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
|
17
|
+
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
|
18
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
|
19
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
|
20
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
|
21
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
|
22
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
|
23
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
|
24
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
|
25
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
26
|
+
L9nRqA==
|
|
27
|
+
-----END CERTIFICATE-----
|
data/config/rails.yml
CHANGED
|
File without changes
|
data/config/rails_rspec.yml
CHANGED
|
File without changes
|
data/config/rspec.yml
CHANGED
|
File without changes
|
data/config/ruby.yml
CHANGED
|
File without changes
|
data/config/ruby_rspec.yml
CHANGED
|
File without changes
|
data/config/rubygem.yml
CHANGED
|
File without changes
|
data/config/rubygem_rspec.yml
CHANGED
|
File without changes
|
data/lib/rubocop/lts/version.rb
CHANGED
data/lib/rubocop/lts.rb
CHANGED
|
File without changes
|
data/sig/rubocop/lts.rbs
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-lts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Peter Boling
|
|
7
|
+
- Peter H. Boling
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain:
|
|
10
10
|
- |
|
|
@@ -86,7 +86,7 @@ dependencies:
|
|
|
86
86
|
version: '1.1'
|
|
87
87
|
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 1.1.
|
|
89
|
+
version: 1.1.13
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -96,49 +96,151 @@ dependencies:
|
|
|
96
96
|
version: '1.1'
|
|
97
97
|
- - ">="
|
|
98
98
|
- !ruby/object:Gem::Version
|
|
99
|
-
version: 1.1.
|
|
99
|
+
version: 1.1.13
|
|
100
100
|
- !ruby/object:Gem::Dependency
|
|
101
|
-
name:
|
|
101
|
+
name: kettle-dev
|
|
102
102
|
requirement: !ruby/object:Gem::Requirement
|
|
103
103
|
requirements:
|
|
104
104
|
- - "~>"
|
|
105
105
|
- !ruby/object:Gem::Version
|
|
106
|
-
version: '
|
|
106
|
+
version: '2.2'
|
|
107
107
|
- - ">="
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version:
|
|
109
|
+
version: 2.2.22
|
|
110
110
|
type: :development
|
|
111
111
|
prerelease: false
|
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
|
113
113
|
requirements:
|
|
114
114
|
- - "~>"
|
|
115
115
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: '
|
|
116
|
+
version: '2.2'
|
|
117
117
|
- - ">="
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
|
-
version:
|
|
119
|
+
version: 2.2.22
|
|
120
120
|
- !ruby/object:Gem::Dependency
|
|
121
|
-
name:
|
|
121
|
+
name: bundler-audit
|
|
122
122
|
requirement: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - "~>"
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version:
|
|
126
|
+
version: 0.9.3
|
|
127
|
+
type: :development
|
|
128
|
+
prerelease: false
|
|
129
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
130
|
+
requirements:
|
|
131
|
+
- - "~>"
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: 0.9.3
|
|
134
|
+
- !ruby/object:Gem::Dependency
|
|
135
|
+
name: rake
|
|
136
|
+
requirement: !ruby/object:Gem::Requirement
|
|
137
|
+
requirements:
|
|
138
|
+
- - "~>"
|
|
139
|
+
- !ruby/object:Gem::Version
|
|
140
|
+
version: '13.0'
|
|
141
|
+
type: :development
|
|
142
|
+
prerelease: false
|
|
143
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
144
|
+
requirements:
|
|
145
|
+
- - "~>"
|
|
146
|
+
- !ruby/object:Gem::Version
|
|
147
|
+
version: '13.0'
|
|
148
|
+
- !ruby/object:Gem::Dependency
|
|
149
|
+
name: require_bench
|
|
150
|
+
requirement: !ruby/object:Gem::Requirement
|
|
151
|
+
requirements:
|
|
152
|
+
- - "~>"
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '1.0'
|
|
127
155
|
- - ">="
|
|
128
156
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: 1.
|
|
157
|
+
version: 1.0.4
|
|
130
158
|
type: :development
|
|
131
159
|
prerelease: false
|
|
132
160
|
version_requirements: !ruby/object:Gem::Requirement
|
|
133
161
|
requirements:
|
|
134
162
|
- - "~>"
|
|
135
163
|
- !ruby/object:Gem::Version
|
|
136
|
-
version: '1.
|
|
164
|
+
version: '1.0'
|
|
137
165
|
- - ">="
|
|
138
166
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 1.
|
|
167
|
+
version: 1.0.4
|
|
140
168
|
- !ruby/object:Gem::Dependency
|
|
141
|
-
name:
|
|
169
|
+
name: appraisal2
|
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
|
171
|
+
requirements:
|
|
172
|
+
- - "~>"
|
|
173
|
+
- !ruby/object:Gem::Version
|
|
174
|
+
version: '3.1'
|
|
175
|
+
- - ">="
|
|
176
|
+
- !ruby/object:Gem::Version
|
|
177
|
+
version: 3.1.3
|
|
178
|
+
type: :development
|
|
179
|
+
prerelease: false
|
|
180
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
181
|
+
requirements:
|
|
182
|
+
- - "~>"
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '3.1'
|
|
185
|
+
- - ">="
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: 3.1.3
|
|
188
|
+
- !ruby/object:Gem::Dependency
|
|
189
|
+
name: kettle-test
|
|
190
|
+
requirement: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - "~>"
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '2.0'
|
|
195
|
+
- - ">="
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: 2.0.8
|
|
198
|
+
type: :development
|
|
199
|
+
prerelease: false
|
|
200
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
201
|
+
requirements:
|
|
202
|
+
- - "~>"
|
|
203
|
+
- !ruby/object:Gem::Version
|
|
204
|
+
version: '2.0'
|
|
205
|
+
- - ">="
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: 2.0.8
|
|
208
|
+
- !ruby/object:Gem::Dependency
|
|
209
|
+
name: turbo_tests2
|
|
210
|
+
requirement: !ruby/object:Gem::Requirement
|
|
211
|
+
requirements:
|
|
212
|
+
- - "~>"
|
|
213
|
+
- !ruby/object:Gem::Version
|
|
214
|
+
version: '3.1'
|
|
215
|
+
- - ">="
|
|
216
|
+
- !ruby/object:Gem::Version
|
|
217
|
+
version: 3.1.5
|
|
218
|
+
type: :development
|
|
219
|
+
prerelease: false
|
|
220
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
221
|
+
requirements:
|
|
222
|
+
- - "~>"
|
|
223
|
+
- !ruby/object:Gem::Version
|
|
224
|
+
version: '3.1'
|
|
225
|
+
- - ">="
|
|
226
|
+
- !ruby/object:Gem::Version
|
|
227
|
+
version: 3.1.5
|
|
228
|
+
- !ruby/object:Gem::Dependency
|
|
229
|
+
name: ruby-progressbar
|
|
230
|
+
requirement: !ruby/object:Gem::Requirement
|
|
231
|
+
requirements:
|
|
232
|
+
- - "~>"
|
|
233
|
+
- !ruby/object:Gem::Version
|
|
234
|
+
version: '1.13'
|
|
235
|
+
type: :development
|
|
236
|
+
prerelease: false
|
|
237
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
238
|
+
requirements:
|
|
239
|
+
- - "~>"
|
|
240
|
+
- !ruby/object:Gem::Version
|
|
241
|
+
version: '1.13'
|
|
242
|
+
- !ruby/object:Gem::Dependency
|
|
243
|
+
name: stone_checksums
|
|
142
244
|
requirement: !ruby/object:Gem::Requirement
|
|
143
245
|
requirements:
|
|
144
246
|
- - "~>"
|
|
@@ -146,7 +248,7 @@ dependencies:
|
|
|
146
248
|
version: '1.0'
|
|
147
249
|
- - ">="
|
|
148
250
|
- !ruby/object:Gem::Version
|
|
149
|
-
version: 1.0.
|
|
251
|
+
version: 1.0.4
|
|
150
252
|
type: :development
|
|
151
253
|
prerelease: false
|
|
152
254
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -156,7 +258,27 @@ dependencies:
|
|
|
156
258
|
version: '1.0'
|
|
157
259
|
- - ">="
|
|
158
260
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 1.0.
|
|
261
|
+
version: 1.0.4
|
|
262
|
+
- !ruby/object:Gem::Dependency
|
|
263
|
+
name: gitmoji-regex
|
|
264
|
+
requirement: !ruby/object:Gem::Requirement
|
|
265
|
+
requirements:
|
|
266
|
+
- - "~>"
|
|
267
|
+
- !ruby/object:Gem::Version
|
|
268
|
+
version: '2.0'
|
|
269
|
+
- - ">="
|
|
270
|
+
- !ruby/object:Gem::Version
|
|
271
|
+
version: 2.0.3
|
|
272
|
+
type: :development
|
|
273
|
+
prerelease: false
|
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
275
|
+
requirements:
|
|
276
|
+
- - "~>"
|
|
277
|
+
- !ruby/object:Gem::Version
|
|
278
|
+
version: '2.0'
|
|
279
|
+
- - ">="
|
|
280
|
+
- !ruby/object:Gem::Version
|
|
281
|
+
version: 2.0.3
|
|
160
282
|
- !ruby/object:Gem::Dependency
|
|
161
283
|
name: rspec-block_is_expected
|
|
162
284
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -177,19 +299,73 @@ dependencies:
|
|
|
177
299
|
- - ">="
|
|
178
300
|
- !ruby/object:Gem::Version
|
|
179
301
|
version: 1.0.6
|
|
180
|
-
|
|
302
|
+
- !ruby/object:Gem::Dependency
|
|
303
|
+
name: rubocop-lts-rspec
|
|
304
|
+
requirement: !ruby/object:Gem::Requirement
|
|
305
|
+
requirements:
|
|
306
|
+
- - "~>"
|
|
307
|
+
- !ruby/object:Gem::Version
|
|
308
|
+
version: '1.0'
|
|
309
|
+
- - ">="
|
|
310
|
+
- !ruby/object:Gem::Version
|
|
311
|
+
version: 1.0.2
|
|
312
|
+
type: :development
|
|
313
|
+
prerelease: false
|
|
314
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
315
|
+
requirements:
|
|
316
|
+
- - "~>"
|
|
317
|
+
- !ruby/object:Gem::Version
|
|
318
|
+
version: '1.0'
|
|
319
|
+
- - ">="
|
|
320
|
+
- !ruby/object:Gem::Version
|
|
321
|
+
version: 1.0.2
|
|
322
|
+
- !ruby/object:Gem::Dependency
|
|
323
|
+
name: rubocop-packaging
|
|
324
|
+
requirement: !ruby/object:Gem::Requirement
|
|
325
|
+
requirements:
|
|
326
|
+
- - "~>"
|
|
327
|
+
- !ruby/object:Gem::Version
|
|
328
|
+
version: '0.6'
|
|
329
|
+
- - ">="
|
|
330
|
+
- !ruby/object:Gem::Version
|
|
331
|
+
version: 0.6.0
|
|
332
|
+
type: :development
|
|
333
|
+
prerelease: false
|
|
334
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
335
|
+
requirements:
|
|
336
|
+
- - "~>"
|
|
337
|
+
- !ruby/object:Gem::Version
|
|
338
|
+
version: '0.6'
|
|
339
|
+
- - ">="
|
|
340
|
+
- !ruby/object:Gem::Version
|
|
341
|
+
version: 0.6.0
|
|
342
|
+
description: "\U0001F9BE Configure RuboCop + a bevy of friends to gradually lint Ruby
|
|
343
|
+
code"
|
|
181
344
|
email:
|
|
182
|
-
-
|
|
345
|
+
- floss@galtzo.com
|
|
183
346
|
executables: []
|
|
184
347
|
extensions: []
|
|
185
|
-
extra_rdoc_files:
|
|
348
|
+
extra_rdoc_files:
|
|
349
|
+
- CHANGELOG.md
|
|
350
|
+
- CITATION.cff
|
|
351
|
+
- CODE_OF_CONDUCT.md
|
|
352
|
+
- CONTRIBUTING.md
|
|
353
|
+
- FUNDING.md
|
|
354
|
+
- LICENSE.md
|
|
355
|
+
- README.md
|
|
356
|
+
- RUBOCOP.md
|
|
357
|
+
- SECURITY.md
|
|
186
358
|
files:
|
|
187
359
|
- CHANGELOG.md
|
|
360
|
+
- CITATION.cff
|
|
188
361
|
- CODE_OF_CONDUCT.md
|
|
189
362
|
- CONTRIBUTING.md
|
|
190
|
-
-
|
|
363
|
+
- FUNDING.md
|
|
364
|
+
- LICENSE.md
|
|
191
365
|
- README.md
|
|
366
|
+
- RUBOCOP.md
|
|
192
367
|
- SECURITY.md
|
|
368
|
+
- certs/pboling.pem
|
|
193
369
|
- config/base.yml
|
|
194
370
|
- config/rails.yml
|
|
195
371
|
- config/rails_rspec.yml
|
|
@@ -202,19 +378,32 @@ files:
|
|
|
202
378
|
- lib/rubocop/lts/version.rb
|
|
203
379
|
- rubocop-lts.yml
|
|
204
380
|
- sig/rubocop/lts.rbs
|
|
205
|
-
|
|
381
|
+
- sig/rubocop/lts/version.rbs
|
|
382
|
+
homepage: https://github.com/rubocop-lts/rubocop-lts
|
|
206
383
|
licenses:
|
|
207
384
|
- MIT
|
|
208
385
|
metadata:
|
|
209
386
|
homepage_uri: https://rubocop-lts.gitlab.io/
|
|
210
|
-
source_code_uri: https://
|
|
211
|
-
changelog_uri: https://
|
|
212
|
-
bug_tracker_uri: https://
|
|
213
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/2.3.
|
|
214
|
-
|
|
215
|
-
|
|
387
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v2.3.1
|
|
388
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v2.3.1/CHANGELOG.md
|
|
389
|
+
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
|
|
390
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/2.3.1
|
|
391
|
+
funding_uri: https://github.com/sponsors/pboling
|
|
392
|
+
wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
|
|
393
|
+
news_uri: https://www.railsbling.com/tags/rubocop-lts
|
|
394
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
|
216
395
|
rubygems_mfa_required: 'true'
|
|
217
|
-
rdoc_options:
|
|
396
|
+
rdoc_options:
|
|
397
|
+
- "--title"
|
|
398
|
+
- "rubocop-lts - \U0001F9BE Rules for Rubies: Rubocop + Standard + Betterlint + Shopify
|
|
399
|
+
+ Gradual"
|
|
400
|
+
- "--main"
|
|
401
|
+
- README.md
|
|
402
|
+
- "--exclude"
|
|
403
|
+
- "^sig/"
|
|
404
|
+
- "--line-numbers"
|
|
405
|
+
- "--inline-source"
|
|
406
|
+
- "--quiet"
|
|
218
407
|
require_paths:
|
|
219
408
|
- lib
|
|
220
409
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -228,7 +417,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
228
417
|
- !ruby/object:Gem::Version
|
|
229
418
|
version: '0'
|
|
230
419
|
requirements: []
|
|
231
|
-
rubygems_version: 4.0.
|
|
420
|
+
rubygems_version: 4.0.10
|
|
232
421
|
specification_version: 4
|
|
233
|
-
summary:
|
|
422
|
+
summary: "\U0001F9BE Rules for Rubies: Rubocop + Standard + Betterlint + Shopify +
|
|
423
|
+
Gradual"
|
|
234
424
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/LICENSE.txt
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 Peter Boling
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|