rubocop-lts 4.2.0 → 4.3.2
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 +94 -4
- 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 +609 -168
- 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 -1
- 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 +253 -51
- 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
|
+
| 4.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: 4.2
|
|
4
|
+
version: 4.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Peter Boling
|
|
7
|
+
- Peter H. Boling
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain:
|
|
10
10
|
- |
|
|
@@ -41,98 +41,206 @@ dependencies:
|
|
|
41
41
|
name: rubocop-ruby2_0
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- - "
|
|
44
|
+
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 3.0
|
|
47
|
-
- - "
|
|
46
|
+
version: '3.0'
|
|
47
|
+
- - ">="
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version:
|
|
49
|
+
version: 3.0.1
|
|
50
50
|
type: :runtime
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
|
-
- - "
|
|
54
|
+
- - "~>"
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 3.0
|
|
57
|
-
- - "
|
|
56
|
+
version: '3.0'
|
|
57
|
+
- - ">="
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version:
|
|
59
|
+
version: 3.0.1
|
|
60
60
|
- !ruby/object:Gem::Dependency
|
|
61
61
|
name: standard-rubocop-lts
|
|
62
62
|
requirement: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
|
-
- - "
|
|
64
|
+
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: 2.0
|
|
67
|
-
- - "
|
|
66
|
+
version: '2.0'
|
|
67
|
+
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version:
|
|
69
|
+
version: 2.0.3
|
|
70
70
|
type: :runtime
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
|
-
- - "
|
|
74
|
+
- - "~>"
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: 2.0
|
|
77
|
-
- - "
|
|
76
|
+
version: '2.0'
|
|
77
|
+
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version:
|
|
79
|
+
version: 2.0.3
|
|
80
80
|
- !ruby/object:Gem::Dependency
|
|
81
81
|
name: version_gem
|
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
|
-
- - "
|
|
84
|
+
- - "~>"
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version: 1.1
|
|
87
|
-
- - "
|
|
86
|
+
version: '1.1'
|
|
87
|
+
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
89
|
+
version: 1.1.13
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '1.1'
|
|
97
|
+
- - ">="
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: 1.1.13
|
|
100
|
+
- !ruby/object:Gem::Dependency
|
|
101
|
+
name: kettle-dev
|
|
102
|
+
requirement: !ruby/object:Gem::Requirement
|
|
103
|
+
requirements:
|
|
104
|
+
- - "~>"
|
|
105
|
+
- !ruby/object:Gem::Version
|
|
106
|
+
version: '2.2'
|
|
94
107
|
- - ">="
|
|
95
108
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
97
|
-
|
|
109
|
+
version: 2.2.23
|
|
110
|
+
type: :development
|
|
111
|
+
prerelease: false
|
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "~>"
|
|
98
115
|
- !ruby/object:Gem::Version
|
|
99
|
-
version: '
|
|
116
|
+
version: '2.2'
|
|
117
|
+
- - ">="
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: 2.2.23
|
|
100
120
|
- !ruby/object:Gem::Dependency
|
|
101
|
-
name:
|
|
121
|
+
name: bundler-audit
|
|
102
122
|
requirement: !ruby/object:Gem::Requirement
|
|
103
123
|
requirements:
|
|
104
124
|
- - "~>"
|
|
105
125
|
- !ruby/object:Gem::Version
|
|
106
|
-
version:
|
|
126
|
+
version: 0.9.3
|
|
107
127
|
type: :development
|
|
108
128
|
prerelease: false
|
|
109
129
|
version_requirements: !ruby/object:Gem::Requirement
|
|
110
130
|
requirements:
|
|
111
131
|
- - "~>"
|
|
112
132
|
- !ruby/object:Gem::Version
|
|
113
|
-
version:
|
|
133
|
+
version: 0.9.3
|
|
114
134
|
- !ruby/object:Gem::Dependency
|
|
115
|
-
name:
|
|
135
|
+
name: rake
|
|
116
136
|
requirement: !ruby/object:Gem::Requirement
|
|
117
137
|
requirements:
|
|
118
138
|
- - "~>"
|
|
119
139
|
- !ruby/object:Gem::Version
|
|
120
|
-
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'
|
|
121
155
|
- - ">="
|
|
122
156
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: 1.
|
|
157
|
+
version: 1.0.4
|
|
124
158
|
type: :development
|
|
125
159
|
prerelease: false
|
|
126
160
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
161
|
requirements:
|
|
128
162
|
- - "~>"
|
|
129
163
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '1.
|
|
164
|
+
version: '1.0'
|
|
131
165
|
- - ">="
|
|
132
166
|
- !ruby/object:Gem::Version
|
|
133
|
-
version: 1.
|
|
167
|
+
version: 1.0.4
|
|
134
168
|
- !ruby/object:Gem::Dependency
|
|
135
|
-
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
|
|
136
244
|
requirement: !ruby/object:Gem::Requirement
|
|
137
245
|
requirements:
|
|
138
246
|
- - "~>"
|
|
@@ -140,7 +248,7 @@ dependencies:
|
|
|
140
248
|
version: '1.0'
|
|
141
249
|
- - ">="
|
|
142
250
|
- !ruby/object:Gem::Version
|
|
143
|
-
version: 1.0.
|
|
251
|
+
version: 1.0.4
|
|
144
252
|
type: :development
|
|
145
253
|
prerelease: false
|
|
146
254
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -150,7 +258,27 @@ dependencies:
|
|
|
150
258
|
version: '1.0'
|
|
151
259
|
- - ">="
|
|
152
260
|
- !ruby/object:Gem::Version
|
|
153
|
-
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
|
|
154
282
|
- !ruby/object:Gem::Dependency
|
|
155
283
|
name: rspec-block_is_expected
|
|
156
284
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -158,6 +286,29 @@ dependencies:
|
|
|
158
286
|
- - "~>"
|
|
159
287
|
- !ruby/object:Gem::Version
|
|
160
288
|
version: '1.0'
|
|
289
|
+
- - ">="
|
|
290
|
+
- !ruby/object:Gem::Version
|
|
291
|
+
version: 1.0.6
|
|
292
|
+
type: :development
|
|
293
|
+
prerelease: false
|
|
294
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
295
|
+
requirements:
|
|
296
|
+
- - "~>"
|
|
297
|
+
- !ruby/object:Gem::Version
|
|
298
|
+
version: '1.0'
|
|
299
|
+
- - ">="
|
|
300
|
+
- !ruby/object:Gem::Version
|
|
301
|
+
version: 1.0.6
|
|
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
|
|
161
312
|
type: :development
|
|
162
313
|
prerelease: false
|
|
163
314
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -165,19 +316,56 @@ dependencies:
|
|
|
165
316
|
- - "~>"
|
|
166
317
|
- !ruby/object:Gem::Version
|
|
167
318
|
version: '1.0'
|
|
168
|
-
|
|
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"
|
|
169
344
|
email:
|
|
170
|
-
-
|
|
345
|
+
- floss@galtzo.com
|
|
171
346
|
executables: []
|
|
172
347
|
extensions: []
|
|
173
|
-
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
|
|
174
358
|
files:
|
|
175
359
|
- CHANGELOG.md
|
|
360
|
+
- CITATION.cff
|
|
176
361
|
- CODE_OF_CONDUCT.md
|
|
177
362
|
- CONTRIBUTING.md
|
|
178
|
-
-
|
|
363
|
+
- FUNDING.md
|
|
364
|
+
- LICENSE.md
|
|
179
365
|
- README.md
|
|
366
|
+
- RUBOCOP.md
|
|
180
367
|
- SECURITY.md
|
|
368
|
+
- certs/pboling.pem
|
|
181
369
|
- config/base.yml
|
|
182
370
|
- config/rails.yml
|
|
183
371
|
- config/rails_rspec.yml
|
|
@@ -190,33 +378,47 @@ files:
|
|
|
190
378
|
- lib/rubocop/lts/version.rb
|
|
191
379
|
- rubocop-lts.yml
|
|
192
380
|
- sig/rubocop/lts.rbs
|
|
193
|
-
|
|
381
|
+
- sig/rubocop/lts/version.rbs
|
|
382
|
+
homepage: https://github.com/rubocop-lts/rubocop-lts
|
|
194
383
|
licenses:
|
|
195
384
|
- MIT
|
|
196
385
|
metadata:
|
|
197
386
|
homepage_uri: https://rubocop-lts.gitlab.io/
|
|
198
|
-
source_code_uri: https://
|
|
199
|
-
changelog_uri: https://
|
|
200
|
-
bug_tracker_uri: https://
|
|
201
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/4.2
|
|
202
|
-
|
|
203
|
-
|
|
387
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v4.3.2
|
|
388
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v4.3.2/CHANGELOG.md
|
|
389
|
+
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
|
|
390
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/4.3.2
|
|
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
|
|
204
395
|
rubygems_mfa_required: 'true'
|
|
205
|
-
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"
|
|
206
407
|
require_paths:
|
|
207
408
|
- lib
|
|
208
409
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
209
410
|
requirements:
|
|
210
411
|
- - ">="
|
|
211
412
|
- !ruby/object:Gem::Version
|
|
212
|
-
version: '2
|
|
413
|
+
version: '3.2'
|
|
213
414
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
214
415
|
requirements:
|
|
215
416
|
- - ">="
|
|
216
417
|
- !ruby/object:Gem::Version
|
|
217
418
|
version: '0'
|
|
218
419
|
requirements: []
|
|
219
|
-
rubygems_version: 4.0.
|
|
420
|
+
rubygems_version: 4.0.10
|
|
220
421
|
specification_version: 4
|
|
221
|
-
summary:
|
|
422
|
+
summary: "\U0001F9BE Rules for Rubies: Rubocop + Standard + Betterlint + Shopify +
|
|
423
|
+
Gradual"
|
|
222
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.
|