rubocop-lts 22.0.1 → 22.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +3 -0
- data/CHANGELOG.md +12 -318
- data/CONTRIBUTING.md +25 -11
- data/README.md +105 -310
- data/SECURITY.md +31 -24
- data/config/rails.yml +2 -0
- data/config/rails_rspec.yml +2 -0
- data/config/rspec.yml +2 -0
- data/config/ruby.yml +2 -0
- data/config/ruby_rspec.yml +2 -0
- data/config/rubygem.yml +2 -0
- data/config/rubygem_rspec.yml +2 -0
- data/lib/rubocop/lts/version.rb +3 -1
- data/lib/rubocop/lts.rb +7 -0
- data/rubocop-lts.yml +15 -2
- data/sig/rubocop/lts.rbs +4 -2
- data.tar.gz.sig +0 -0
- metadata +107 -20
- metadata.gz.sig +0 -0
data/SECURITY.md
CHANGED
@@ -2,30 +2,37 @@
|
|
2
2
|
|
3
3
|
## Supported Versions
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
|
10
|
-
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
5
|
+
Major even versions are supported.
|
6
|
+
|
7
|
+
Major odd versions are not supported, and no further odd major releases are planned.
|
8
|
+
|
9
|
+
| Version | Supported |
|
10
|
+
|-----------|-----------|
|
11
|
+
| 0.latest | ✅ |
|
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 | ✅ |
|
29
36
|
|
30
37
|
## Reporting a Vulnerability
|
31
38
|
|
data/config/rails.yml
ADDED
data/config/rspec.yml
ADDED
data/config/ruby.yml
ADDED
data/config/rubygem.yml
ADDED
data/lib/rubocop/lts/version.rb
CHANGED
data/lib/rubocop/lts.rb
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# external libs
|
4
|
+
require "version_gem"
|
5
|
+
|
3
6
|
require_relative "lts/version"
|
4
7
|
|
5
8
|
module Rubocop
|
@@ -8,3 +11,7 @@ module Rubocop
|
|
8
11
|
# Your code goes here...
|
9
12
|
end
|
10
13
|
end
|
14
|
+
|
15
|
+
Rubocop::Lts::Version.class_eval do
|
16
|
+
extend VersionGem::Basic
|
17
|
+
end
|
data/rubocop-lts.yml
CHANGED
@@ -1,2 +1,15 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# Change the file you inherit if you:
|
2
|
+
# * use Rails,
|
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
|
13
|
+
|
14
|
+
inherit_from:
|
15
|
+
- config/ruby_rspec.yml
|
data/sig/rubocop/lts.rbs
CHANGED
data.tar.gz.sig
ADDED
Binary file
|
metadata
CHANGED
@@ -1,30 +1,112 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-lts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 22.
|
4
|
+
version: 22.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
|
-
cert_chain:
|
11
|
-
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
14
|
+
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
15
|
+
A2NvbTAeFw0yMjA5MTgyMzEyMzBaFw0yMzA5MTgyMzEyMzBaMEMxFTATBgNVBAMM
|
16
|
+
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
17
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA2Dn1GM3W
|
18
|
+
8K2/rvN1zz+06bQMcxD16ZKTihVwi7Pb1v3T98rM4Omnxohm3s+CwpDWGeiB9pj6
|
19
|
+
0I/CTce0e4e3s8GKJSOrg93veImPSoH2PfsMsRsuB8wtqyiOCjLbF5o6S29x87r0
|
20
|
+
LA5EawH+Lh4xqrkkPjdffsmLk7TaCig/vlmNvnzxXKBdey/X/aEJZXzzBiWRfVdh
|
21
|
+
O1fmMbVKyieGv9HK7+pLotIoT08bjDv8NP6V7zZslwQRqW27bQc6cqC2LGIbTYO3
|
22
|
+
3jt1kQxfMWmhOictS6SzG9VtKSrXf0L4Neq0Gh7CLBZBvJFWJYZPfb92YNITDbd8
|
23
|
+
emPOAQlXXNMN4mMXsEqtEhCPZRMnmwO+fOk/cC4AyglKi9lnQugCQoFV1XDMZST/
|
24
|
+
CYbzdQyadOdPDInTntG6V+Uw51d2QGXZ6PDDfrx9+toc/3sl5h68rCUGgE6Q3jPz
|
25
|
+
srinqmBsxv2vTpmd4FjmiAtEnwH5/ooLpQYL8UdAjEoeysxS3AwIh+5dAgMBAAGj
|
26
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQWU6D156a2cle+
|
27
|
+
lb5RBfvVXlxTwjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
28
|
+
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
29
|
+
ggGBAJ4SqhPlgUiLYIrphGXIaxXScHyvx4kixuvdrwhI4VoQV2qXvO7R6ZjOXVwX
|
30
|
+
f/z84BWPiTZ8lzThPbt1UV/BGwkvLw9I4RjOdzvUz3J42j9Ly6q63isall07bo3F
|
31
|
+
QWe/OBvIMBF1IbjC3q5vKPg4rq8+TkNRJNoE86U2gfR+PkW3jYYs9uiy0GloHDCP
|
32
|
+
k5xgaj0vSL0Uy5mTOPdk3K6a/sUGZyYniWK05zdhIi956ynhfGaFO988FFdVw5Jq
|
33
|
+
LHtXfIpAU8F7ES04syZSslxOluw7VlcSKyRdVIr737J92ZTduppB4PRGSKRgBsWV
|
34
|
+
hXTahRE72Kyw53Q7FAuzF3v102WxAAQ7BuMjW+MyCUT75fwPm3W4ELPL8HYkNGE7
|
35
|
+
2oA5CPghFitRnvYS3GNrDG+9bNiRMEskeaBYwZ9UgReBQIwGYVj7LZk3UhiAsn44
|
36
|
+
gwGrEXGQGDZ0NIgBcmvMOqlXjkGQwQvugKycJ024z89+fz2332vdZIKTrSxJrXGk
|
37
|
+
4/bR9A==
|
38
|
+
-----END CERTIFICATE-----
|
39
|
+
date: 2023-05-22 00:00:00.000000000 Z
|
12
40
|
dependencies:
|
13
41
|
- !ruby/object:Gem::Dependency
|
14
42
|
name: rubocop-ruby3_1
|
15
43
|
requirement: !ruby/object:Gem::Requirement
|
16
44
|
requirements:
|
17
|
-
- - "
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.0.4
|
48
|
+
- - "<"
|
18
49
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
50
|
+
version: '3'
|
20
51
|
type: :runtime
|
21
52
|
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 2.0.4
|
58
|
+
- - "<"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '3'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: version_gem
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 1.1.2
|
68
|
+
- - "<"
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '3'
|
71
|
+
type: :runtime
|
72
|
+
prerelease: false
|
73
|
+
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.1.2
|
78
|
+
- - "<"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '3'
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: rubocop-packaging
|
83
|
+
requirement: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - "~>"
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0.5'
|
88
|
+
type: :development
|
89
|
+
prerelease: false
|
22
90
|
version_requirements: !ruby/object:Gem::Requirement
|
23
91
|
requirements:
|
24
92
|
- - "~>"
|
25
93
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
27
|
-
|
94
|
+
version: '0.5'
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: rubocop-rspec
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - "~>"
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '2.22'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - "~>"
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '2.22'
|
109
|
+
description: Configure RuboCop + a bevy of friends to gradually lint Ruby code
|
28
110
|
email:
|
29
111
|
- peter.boling@gmail.com
|
30
112
|
executables: []
|
@@ -37,20 +119,28 @@ files:
|
|
37
119
|
- LICENSE.txt
|
38
120
|
- README.md
|
39
121
|
- SECURITY.md
|
122
|
+
- config/rails.yml
|
123
|
+
- config/rails_rspec.yml
|
124
|
+
- config/rspec.yml
|
125
|
+
- config/ruby.yml
|
126
|
+
- config/ruby_rspec.yml
|
127
|
+
- config/rubygem.yml
|
128
|
+
- config/rubygem_rspec.yml
|
40
129
|
- lib/rubocop/lts.rb
|
41
130
|
- lib/rubocop/lts/version.rb
|
42
131
|
- rubocop-lts.yml
|
43
132
|
- sig/rubocop/lts.rbs
|
44
|
-
homepage: https://
|
133
|
+
homepage: https://gitlab.com/rubocop-lts/rubocop-lts
|
45
134
|
licenses:
|
46
135
|
- MIT
|
47
136
|
metadata:
|
48
|
-
homepage_uri: https://
|
49
|
-
source_code_uri: https://
|
50
|
-
changelog_uri: https://
|
51
|
-
bug_tracker_uri: https://
|
52
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/22.
|
53
|
-
wiki_uri: https://
|
137
|
+
homepage_uri: https://gitlab.com/rubocop-lts/rubocop-lts
|
138
|
+
source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/v22.1.1
|
139
|
+
changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/v22.1.1/CHANGELOG.md
|
140
|
+
bug_tracker_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/issues
|
141
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/22.1.1
|
142
|
+
wiki_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/wiki
|
143
|
+
funding_uri: https://liberapay.com/pboling
|
54
144
|
rubygems_mfa_required: 'true'
|
55
145
|
post_install_message:
|
56
146
|
rdoc_options: []
|
@@ -60,18 +150,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
60
150
|
requirements:
|
61
151
|
- - ">="
|
62
152
|
- !ruby/object:Gem::Version
|
63
|
-
version: 3.
|
64
|
-
- - "<"
|
65
|
-
- !ruby/object:Gem::Version
|
66
|
-
version: '4.0'
|
153
|
+
version: '3.0'
|
67
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
155
|
requirements:
|
69
156
|
- - ">="
|
70
157
|
- !ruby/object:Gem::Version
|
71
158
|
version: '0'
|
72
159
|
requirements: []
|
73
|
-
rubygems_version: 3.
|
160
|
+
rubygems_version: 3.4.13
|
74
161
|
signing_key:
|
75
162
|
specification_version: 4
|
76
|
-
summary: Rubocop
|
163
|
+
summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Shopify + Gradual'
|
77
164
|
test_files: []
|
metadata.gz.sig
ADDED
Binary file
|