rubocop-lts 6.3.2 → 7.0.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/CHANGELOG.md +74 -97
- data/CODE_OF_CONDUCT.md +29 -79
- data/CONTRIBUTING.md +13 -263
- data/{MIT.md → LICENSE.txt} +1 -1
- data/README.md +369 -671
- data/SECURITY.md +17 -15
- data/lib/rubocop/lts/version.rb +1 -4
- data/lib/rubocop/lts.rb +1 -12
- data/rubocop-lts.yml +10 -14
- data/sig/rubocop/lts.rbs +2 -3
- data/spec/config/rspec/rspec_core.rb +13 -0
- data/spec/rubocop/lts_spec.rb +7 -0
- data/spec/spec_helper.rb +7 -0
- metadata +31 -371
- checksums.yaml.gz.sig +0 -0
- data/CITATION.cff +0 -20
- data/FUNDING.md +0 -70
- data/LICENSE.md +0 -10
- data/RUBOCOP.md +0 -71
- data/certs/pboling.pem +0 -27
- data/config/base.yml +0 -2
- data/config/rails.yml +0 -4
- data/config/rails_rspec.yml +0 -5
- data/config/rspec.yml +0 -4
- data/config/ruby.yml +0 -4
- data/config/ruby_rspec.yml +0 -5
- data/config/rubygem.yml +0 -4
- data/config/rubygem_rspec.yml +0 -5
- data/sig/rubocop/lts/version.rbs +0 -8
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
data/SECURITY.md
CHANGED
|
@@ -2,20 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## Supported Versions
|
|
4
4
|
|
|
5
|
-
| Version
|
|
6
|
-
|
|
7
|
-
|
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
|---------|--------------------|
|
|
7
|
+
| 1.x | :white_check_mark: |
|
|
8
|
+
| 2.x | :white_check_mark: |
|
|
9
|
+
| 3.x | :white_check_mark: |
|
|
10
|
+
| 4.x | :white_check_mark: |
|
|
11
|
+
| 5.x | :white_check_mark: |
|
|
12
|
+
| 6.x | :white_check_mark: |
|
|
13
|
+
| 7.x | :white_check_mark: |
|
|
14
|
+
| 8.x | :white_check_mark: |
|
|
15
|
+
| 9.x | :white_check_mark: |
|
|
16
|
+
| 10.x | :white_check_mark: |
|
|
17
|
+
| 11.x | :white_check_mark: |
|
|
8
18
|
|
|
9
|
-
##
|
|
19
|
+
## Reporting a Vulnerability
|
|
10
20
|
|
|
11
|
-
|
|
12
|
-
[
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
## Additional Support
|
|
16
|
-
|
|
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
|
|
21
|
+
Peter Boling is the primary maintainer of this gem. Please find a way
|
|
22
|
+
to [contact him directly](https://railsbling.com/contact) to report the issue. Include as much relevant information as
|
|
23
|
+
possible.
|
data/lib/rubocop/lts/version.rb
CHANGED
data/lib/rubocop/lts.rb
CHANGED
|
@@ -1,21 +1,10 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# external libs
|
|
4
|
-
require "version_gem"
|
|
5
|
-
require "rubocop/ruby2_1"
|
|
6
|
-
|
|
7
3
|
require_relative "lts/version"
|
|
8
4
|
|
|
9
5
|
module Rubocop
|
|
10
6
|
module Lts
|
|
11
7
|
class Error < StandardError; end
|
|
12
|
-
|
|
13
|
-
module_function def install_tasks
|
|
14
|
-
Rubocop::Ruby21.install_tasks
|
|
15
|
-
end
|
|
8
|
+
# Your code goes here...
|
|
16
9
|
end
|
|
17
10
|
end
|
|
18
|
-
|
|
19
|
-
Rubocop::Lts::Version.class_eval do
|
|
20
|
-
extend VersionGem::Basic
|
|
21
|
-
end
|
data/rubocop-lts.yml
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
# * are creating a RubyGem, or
|
|
4
|
-
# * don't use RSpec
|
|
5
|
-
# As follows:
|
|
6
|
-
# inherit_gem:
|
|
7
|
-
# # Pick one:
|
|
8
|
-
# # rubocop-lts: config/rails_rspec.yml # or config/rails.yml w/o rspec
|
|
9
|
-
# # rubocop-lts: config/ruby_rspec.yml # or config/ruby.yml w/o rspec
|
|
10
|
-
# # rubocop-lts: config/rubygem_rspec.yml # or config/rubygem.yml w/o rspec
|
|
11
|
-
# # Convention over configuration, hence loading this file just only Ruby and RSpec defaults:
|
|
12
|
-
# rubocop-lts: rubocop-lts.yml # for the ruby + rspec
|
|
1
|
+
inherit_gem:
|
|
2
|
+
rubocop-ruby2_2: rubocop.yml
|
|
13
3
|
|
|
14
|
-
|
|
15
|
-
|
|
4
|
+
# Removed as of 0.80.0
|
|
5
|
+
# braces setting is for compatibility with Ruby 2.7+
|
|
6
|
+
# See:
|
|
7
|
+
# * https://github.com/rubocop/rubocop/issues/7641
|
|
8
|
+
# * https://github.com/rubocop/rubocop/pull/7643
|
|
9
|
+
Style/BracesAroundHashParameters:
|
|
10
|
+
Enabled: true
|
|
11
|
+
EnforcedStyle: context_dependent
|
data/sig/rubocop/lts.rbs
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
RSpec.configure do |config|
|
|
4
|
+
# Enable flags like --only-failures and --next-failure
|
|
5
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
|
6
|
+
|
|
7
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
|
8
|
+
config.disable_monkey_patching!
|
|
9
|
+
|
|
10
|
+
config.expect_with :rspec do |c|
|
|
11
|
+
c.syntax = :expect
|
|
12
|
+
end
|
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
|
@@ -1,423 +1,83 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-lts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 7.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Peter
|
|
7
|
+
- Peter Boling
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: exe
|
|
9
|
-
cert_chain:
|
|
10
|
-
-
|
|
11
|
-
-----BEGIN CERTIFICATE-----
|
|
12
|
-
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
|
13
|
-
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
|
14
|
-
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
15
|
-
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
16
|
-
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
|
17
|
-
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
|
18
|
-
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
|
19
|
-
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
|
20
|
-
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
|
21
|
-
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
|
22
|
-
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
|
23
|
-
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
|
24
|
-
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
|
25
|
-
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
|
26
|
-
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
|
27
|
-
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
|
28
|
-
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
|
29
|
-
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
|
30
|
-
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
|
31
|
-
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
|
32
|
-
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
|
33
|
-
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
|
34
|
-
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
|
35
|
-
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
36
|
-
L9nRqA==
|
|
37
|
-
-----END CERTIFICATE-----
|
|
38
|
-
date: 1980-01-02 00:00:00.000000000 Z
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
|
39
12
|
dependencies:
|
|
40
13
|
- !ruby/object:Gem::Dependency
|
|
41
|
-
name: rubocop-
|
|
14
|
+
name: rubocop-ruby2_2
|
|
42
15
|
requirement: !ruby/object:Gem::Requirement
|
|
43
16
|
requirements:
|
|
44
17
|
- - "~>"
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version: '3.0'
|
|
47
|
-
- - ">="
|
|
48
|
-
- !ruby/object:Gem::Version
|
|
49
|
-
version: 3.0.1
|
|
50
|
-
type: :runtime
|
|
51
|
-
prerelease: false
|
|
52
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
-
requirements:
|
|
54
|
-
- - "~>"
|
|
55
|
-
- !ruby/object:Gem::Version
|
|
56
|
-
version: '3.0'
|
|
57
|
-
- - ">="
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
version: 3.0.1
|
|
60
|
-
- !ruby/object:Gem::Dependency
|
|
61
|
-
name: standard-rubocop-lts
|
|
62
|
-
requirement: !ruby/object:Gem::Requirement
|
|
63
|
-
requirements:
|
|
64
|
-
- - "~>"
|
|
65
|
-
- !ruby/object:Gem::Version
|
|
66
|
-
version: '2.0'
|
|
67
|
-
- - ">="
|
|
68
|
-
- !ruby/object:Gem::Version
|
|
69
|
-
version: 2.0.3
|
|
70
|
-
type: :runtime
|
|
71
|
-
prerelease: false
|
|
72
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
requirements:
|
|
74
|
-
- - "~>"
|
|
75
|
-
- !ruby/object:Gem::Version
|
|
76
|
-
version: '2.0'
|
|
77
|
-
- - ">="
|
|
78
|
-
- !ruby/object:Gem::Version
|
|
79
|
-
version: 2.0.3
|
|
80
|
-
- !ruby/object:Gem::Dependency
|
|
81
|
-
name: version_gem
|
|
82
|
-
requirement: !ruby/object:Gem::Requirement
|
|
83
|
-
requirements:
|
|
84
|
-
- - "~>"
|
|
85
|
-
- !ruby/object:Gem::Version
|
|
86
|
-
version: '1.1'
|
|
87
|
-
- - ">="
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: 1.1.13
|
|
90
|
-
type: :runtime
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
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.3'
|
|
107
|
-
- - ">="
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
version: 2.3.0
|
|
110
|
-
type: :development
|
|
111
|
-
prerelease: false
|
|
112
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
113
|
-
requirements:
|
|
114
|
-
- - "~>"
|
|
115
|
-
- !ruby/object:Gem::Version
|
|
116
|
-
version: '2.3'
|
|
117
|
-
- - ">="
|
|
118
|
-
- !ruby/object:Gem::Version
|
|
119
|
-
version: 2.3.0
|
|
120
|
-
- !ruby/object:Gem::Dependency
|
|
121
|
-
name: bundler-audit
|
|
122
|
-
requirement: !ruby/object:Gem::Requirement
|
|
123
|
-
requirements:
|
|
124
|
-
- - "~>"
|
|
125
|
-
- !ruby/object:Gem::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'
|
|
155
|
-
- - ">="
|
|
156
18
|
- !ruby/object:Gem::Version
|
|
157
19
|
version: 1.0.4
|
|
158
|
-
type: :
|
|
20
|
+
type: :runtime
|
|
159
21
|
prerelease: false
|
|
160
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
161
23
|
requirements:
|
|
162
24
|
- - "~>"
|
|
163
|
-
- !ruby/object:Gem::Version
|
|
164
|
-
version: '1.0'
|
|
165
|
-
- - ">="
|
|
166
25
|
- !ruby/object:Gem::Version
|
|
167
26
|
version: 1.0.4
|
|
168
|
-
-
|
|
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.4
|
|
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.4
|
|
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.9
|
|
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.9
|
|
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.6
|
|
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.6
|
|
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
|
|
244
|
-
requirement: !ruby/object:Gem::Requirement
|
|
245
|
-
requirements:
|
|
246
|
-
- - "~>"
|
|
247
|
-
- !ruby/object:Gem::Version
|
|
248
|
-
version: '1.0'
|
|
249
|
-
- - ">="
|
|
250
|
-
- !ruby/object:Gem::Version
|
|
251
|
-
version: 1.0.5
|
|
252
|
-
type: :development
|
|
253
|
-
prerelease: false
|
|
254
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
255
|
-
requirements:
|
|
256
|
-
- - "~>"
|
|
257
|
-
- !ruby/object:Gem::Version
|
|
258
|
-
version: '1.0'
|
|
259
|
-
- - ">="
|
|
260
|
-
- !ruby/object:Gem::Version
|
|
261
|
-
version: 1.0.5
|
|
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.4
|
|
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.4
|
|
282
|
-
- !ruby/object:Gem::Dependency
|
|
283
|
-
name: rspec-block_is_expected
|
|
284
|
-
requirement: !ruby/object:Gem::Requirement
|
|
285
|
-
requirements:
|
|
286
|
-
- - "~>"
|
|
287
|
-
- !ruby/object:Gem::Version
|
|
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
|
|
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"
|
|
27
|
+
description: Rubocop LTS - Chaos Reduction In a Bottle
|
|
344
28
|
email:
|
|
345
|
-
-
|
|
29
|
+
- peter.boling@gmail.com
|
|
346
30
|
executables: []
|
|
347
31
|
extensions: []
|
|
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
|
|
32
|
+
extra_rdoc_files: []
|
|
358
33
|
files:
|
|
359
34
|
- CHANGELOG.md
|
|
360
|
-
- CITATION.cff
|
|
361
35
|
- CODE_OF_CONDUCT.md
|
|
362
36
|
- CONTRIBUTING.md
|
|
363
|
-
-
|
|
364
|
-
- LICENSE.md
|
|
365
|
-
- MIT.md
|
|
37
|
+
- LICENSE.txt
|
|
366
38
|
- README.md
|
|
367
|
-
- RUBOCOP.md
|
|
368
39
|
- SECURITY.md
|
|
369
|
-
- certs/pboling.pem
|
|
370
|
-
- config/base.yml
|
|
371
|
-
- config/rails.yml
|
|
372
|
-
- config/rails_rspec.yml
|
|
373
|
-
- config/rspec.yml
|
|
374
|
-
- config/ruby.yml
|
|
375
|
-
- config/ruby_rspec.yml
|
|
376
|
-
- config/rubygem.yml
|
|
377
|
-
- config/rubygem_rspec.yml
|
|
378
40
|
- lib/rubocop/lts.rb
|
|
379
41
|
- lib/rubocop/lts/version.rb
|
|
380
42
|
- rubocop-lts.yml
|
|
381
43
|
- sig/rubocop/lts.rbs
|
|
382
|
-
-
|
|
44
|
+
- spec/config/rspec/rspec_core.rb
|
|
45
|
+
- spec/rubocop/lts_spec.rb
|
|
46
|
+
- spec/spec_helper.rb
|
|
383
47
|
homepage: https://github.com/rubocop-lts/rubocop-lts
|
|
384
48
|
licenses:
|
|
385
49
|
- MIT
|
|
386
50
|
metadata:
|
|
387
|
-
homepage_uri: https://rubocop-lts
|
|
388
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/
|
|
389
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/
|
|
51
|
+
homepage_uri: https://github.com/rubocop-lts/rubocop-lts
|
|
52
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v7.0.0
|
|
53
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v7.0.0/CHANGELOG.md
|
|
390
54
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
|
|
391
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/
|
|
392
|
-
funding_uri: https://github.com/sponsors/pboling
|
|
55
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/7.0.0
|
|
393
56
|
wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
|
|
394
|
-
news_uri: https://www.railsbling.com/tags/rubocop-lts
|
|
395
|
-
discord_uri: https://discord.gg/3qme4XHNKN
|
|
396
57
|
rubygems_mfa_required: 'true'
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
- "rubocop-lts - \U0001F9BE Rules for Rubies: Rubocop + Standard + Betterlint + Gradual"
|
|
400
|
-
- "--main"
|
|
401
|
-
- README.md
|
|
402
|
-
- "--exclude"
|
|
403
|
-
- "^sig/"
|
|
404
|
-
- "--line-numbers"
|
|
405
|
-
- "--inline-source"
|
|
406
|
-
- "--quiet"
|
|
58
|
+
post_install_message:
|
|
59
|
+
rdoc_options: []
|
|
407
60
|
require_paths:
|
|
408
61
|
- lib
|
|
409
62
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
410
63
|
requirements:
|
|
411
64
|
- - ">="
|
|
412
65
|
- !ruby/object:Gem::Version
|
|
413
|
-
version:
|
|
66
|
+
version: 2.2.0
|
|
67
|
+
- - "<"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '2.3'
|
|
414
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
415
71
|
requirements:
|
|
416
72
|
- - ">="
|
|
417
73
|
- !ruby/object:Gem::Version
|
|
418
74
|
version: '0'
|
|
419
75
|
requirements: []
|
|
420
|
-
rubygems_version:
|
|
76
|
+
rubygems_version: 3.3.14
|
|
77
|
+
signing_key:
|
|
421
78
|
specification_version: 4
|
|
422
|
-
summary:
|
|
423
|
-
test_files:
|
|
79
|
+
summary: Rubocop LTS - Semantically Versioned
|
|
80
|
+
test_files:
|
|
81
|
+
- spec/spec_helper.rb
|
|
82
|
+
- spec/config/rspec/rspec_core.rb
|
|
83
|
+
- spec/rubocop/lts_spec.rb
|
checksums.yaml.gz.sig
DELETED
|
Binary file
|
data/CITATION.cff
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: "rubocop-lts"
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this work and you want to cite it,
|
|
5
|
-
then you can use the metadata from this file.
|
|
6
|
-
type: software
|
|
7
|
-
authors:
|
|
8
|
-
- given-names: "Peter H."
|
|
9
|
-
family-names: "Boling"
|
|
10
|
-
email: "floss@galtzo.com"
|
|
11
|
-
affiliation: "galtzo.com"
|
|
12
|
-
orcid: 'https://orcid.org/0009-0008-8519-441X'
|
|
13
|
-
identifiers:
|
|
14
|
-
- type: url
|
|
15
|
-
value: 'https://github.com/rubocop-lts/rubocop-lts'
|
|
16
|
-
description: "rubocop-lts"
|
|
17
|
-
repository-code: 'https://github.com/rubocop-lts/rubocop-lts'
|
|
18
|
-
abstract: >-
|
|
19
|
-
rubocop-lts
|
|
20
|
-
license: See license file
|