rubocop-lts 2.3.2 → 3.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 +16 -144
- 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 +2 -4
- data/lib/rubocop/lts.rb +1 -12
- data/sig/rubocop/lts.rbs +2 -3
- data/spec/config/rspec/rspec_core.rb +14 -0
- data/spec/rubocop/lts_spec.rb +8 -0
- data/spec/spec_helper.rb +8 -0
- metadata +31 -372
- checksums.yaml.gz.sig +0 -4
- 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/rubocop-lts.yml +0 -15
- 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,22 +1,11 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
# frozen_string_literal: true
|
|
3
3
|
|
|
4
|
-
# external libs
|
|
5
|
-
require "version_gem"
|
|
6
|
-
require "rubocop/ruby1_9"
|
|
7
|
-
|
|
8
4
|
require_relative "lts/version"
|
|
9
5
|
|
|
10
6
|
module Rubocop
|
|
11
7
|
module Lts
|
|
12
8
|
class Error < StandardError; end
|
|
13
|
-
|
|
14
|
-
module_function def install_tasks
|
|
15
|
-
Rubocop::Ruby19.install_tasks
|
|
16
|
-
end
|
|
9
|
+
# Your code goes here...
|
|
17
10
|
end
|
|
18
11
|
end
|
|
19
|
-
|
|
20
|
-
Rubocop::Lts::Version.class_eval do
|
|
21
|
-
extend VersionGem::Basic
|
|
22
|
-
end
|
data/sig/rubocop/lts.rbs
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
RSpec.configure do |config|
|
|
5
|
+
# Enable flags like --only-failures and --next-failure
|
|
6
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
|
7
|
+
|
|
8
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
|
9
|
+
config.disable_monkey_patching!
|
|
10
|
+
|
|
11
|
+
config.expect_with :rspec do |c|
|
|
12
|
+
c.syntax = :expect
|
|
13
|
+
end
|
|
14
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
|
@@ -1,423 +1,82 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-lts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.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-22 00:00:00.000000000 Z
|
|
39
12
|
dependencies:
|
|
40
13
|
- !ruby/object:Gem::Dependency
|
|
41
|
-
name: rubocop-
|
|
14
|
+
name: rubocop-ruby2_0
|
|
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
|
-
- rubocop-lts.yml
|
|
381
42
|
- sig/rubocop/lts.rbs
|
|
382
|
-
-
|
|
43
|
+
- spec/config/rspec/rspec_core.rb
|
|
44
|
+
- spec/rubocop/lts_spec.rb
|
|
45
|
+
- spec/spec_helper.rb
|
|
383
46
|
homepage: https://github.com/rubocop-lts/rubocop-lts
|
|
384
47
|
licenses:
|
|
385
48
|
- MIT
|
|
386
49
|
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/
|
|
50
|
+
homepage_uri: https://github.com/rubocop-lts/rubocop-lts
|
|
51
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v3.0.0
|
|
52
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v3.0.0/CHANGELOG.md
|
|
390
53
|
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
|
|
54
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/3.0.0
|
|
393
55
|
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
56
|
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"
|
|
57
|
+
post_install_message:
|
|
58
|
+
rdoc_options: []
|
|
407
59
|
require_paths:
|
|
408
60
|
- lib
|
|
409
61
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
410
62
|
requirements:
|
|
411
63
|
- - ">="
|
|
412
64
|
- !ruby/object:Gem::Version
|
|
413
|
-
version:
|
|
65
|
+
version: 2.0.0
|
|
66
|
+
- - "<"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '2.1'
|
|
414
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
415
70
|
requirements:
|
|
416
71
|
- - ">="
|
|
417
72
|
- !ruby/object:Gem::Version
|
|
418
73
|
version: '0'
|
|
419
74
|
requirements: []
|
|
420
|
-
rubygems_version:
|
|
75
|
+
rubygems_version: 3.3.14
|
|
76
|
+
signing_key:
|
|
421
77
|
specification_version: 4
|
|
422
|
-
summary:
|
|
423
|
-
test_files:
|
|
78
|
+
summary: Rubocop LTS - Semantically Versioned
|
|
79
|
+
test_files:
|
|
80
|
+
- spec/spec_helper.rb
|
|
81
|
+
- spec/config/rspec/rspec_core.rb
|
|
82
|
+
- spec/rubocop/lts_spec.rb
|
checksums.yaml.gz.sig
DELETED
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
|
data/FUNDING.md
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
<!-- RELEASE-NOTES-FOOTER-START -->
|
|
2
|
-
|
|
3
|
-
Official Discord 👉️ [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
|
4
|
-
|
|
5
|
-
Many paths lead to being a sponsor or a backer of this project. Are you on such a path?
|
|
6
|
-
|
|
7
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
|
8
|
-
|
|
9
|
-
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
10
|
-
|
|
11
|
-
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
12
|
-
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
13
|
-
[🖇osc-backers]: https://opencollective.com/rubocop-lts#backer
|
|
14
|
-
[🖇osc-backers-i]: https://opencollective.com/rubocop-lts/backers/badge.svg?style=flat
|
|
15
|
-
[🖇osc-sponsors]: https://opencollective.com/rubocop-lts#sponsor
|
|
16
|
-
[🖇osc-sponsors-i]: https://opencollective.com/rubocop-lts/sponsors/badge.svg?style=flat
|
|
17
|
-
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
18
|
-
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
19
|
-
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
20
|
-
[🖇kofi]: https://ko-fi.com/pboling
|
|
21
|
-
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
22
|
-
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
23
|
-
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
|
24
|
-
[🖇paypal]: https://www.paypal.com/paypalme/peterboling
|
|
25
|
-
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
|
26
|
-
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=flat
|
|
27
|
-
|
|
28
|
-
<!-- RELEASE-NOTES-FOOTER-END -->
|
|
29
|
-
|
|
30
|
-
# 🤑 A request for help
|
|
31
|
-
|
|
32
|
-
Maintainers have teeth and need to pay their dentists.
|
|
33
|
-
After getting laid off in an RIF in March, and encountering difficulty finding a new one,
|
|
34
|
-
I began spending most of my time building open source tools.
|
|
35
|
-
I'm hoping to be able to pay for my kids' health insurance this month,
|
|
36
|
-
so if you value the work I am doing, I need your support.
|
|
37
|
-
Please consider sponsoring me or the project.
|
|
38
|
-
|
|
39
|
-
To join the community or get help 👇️ Join the Discord.
|
|
40
|
-
|
|
41
|
-
[![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite]
|
|
42
|
-
|
|
43
|
-
To say "thanks!" ☝️ Join the Discord or 👇️ send money.
|
|
44
|
-
|
|
45
|
-
[![Sponsor rubocop-lts/rubocop-lts on Open Source Collective][🖇osc-all-bottom-img]][🖇osc] 💌 [![Sponsor me on GitHub Sponsors][🖇sponsor-bottom-img]][🖇sponsor] 💌 [![Sponsor me on Liberapay][⛳liberapay-bottom-img]][⛳liberapay] 💌 [![Donate on PayPal][🖇paypal-bottom-img]][🖇paypal]
|
|
46
|
-
|
|
47
|
-
# Another Way to Support Open Source Software
|
|
48
|
-
|
|
49
|
-
I’m driven by a passion to foster a thriving open-source community – a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions. I was recently affected by layoffs, and the tech jobs market is unwelcoming. I’m reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 🐔 chickens, 2 🐶 dogs, 3 🐰 rabbits, 8 🐈 cats).
|
|
50
|
-
|
|
51
|
-
If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in `bundle fund`.
|
|
52
|
-
|
|
53
|
-
I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.
|
|
54
|
-
|
|
55
|
-
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
56
|
-
|
|
57
|
-
[⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
|
|
58
|
-
[🖇osc-all-img]: https://img.shields.io/opencollective/all/rubocop-lts
|
|
59
|
-
[🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/rubocop-lts
|
|
60
|
-
[🖇osc-backers-img]: https://img.shields.io/opencollective/backers/rubocop-lts
|
|
61
|
-
[🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/rubocop-lts?style=for-the-badge
|
|
62
|
-
[🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/rubocop-lts?style=for-the-badge
|
|
63
|
-
[🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/rubocop-lts?style=for-the-badge
|
|
64
|
-
[🖇osc]: https://opencollective.com/rubocop-lts
|
|
65
|
-
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
66
|
-
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
|
67
|
-
[🖇paypal-bottom-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=for-the-badge&logo=paypal&color=0A0A0A
|
|
68
|
-
[🖇floss-funding.dev]: https://floss-funding.dev
|
|
69
|
-
[🖇floss-funding-gem]: https://github.com/galtzo-floss/floss_funding
|
|
70
|
-
[✉️discord-invite-img-ftb]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|