standard-rubocop-lts 1.0.7 → 1.0.9
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 +0 -0
- data/CHANGELOG.md +13 -0
- data/README.md +2 -1
- data/config/internal/base.yml +2 -2
- data/config/ruby-1.8.yml +2 -1
- data/config/ruby-1.9.yml +2 -1
- data/config/ruby-2.0.yml +2 -1
- data/config/ruby-2.1.yml +2 -1
- data/config/ruby-2.2.yml +2 -1
- data/config/ruby-2.3.yml +2 -1
- data/config/ruby-2.4.yml +2 -1
- data/config/ruby-2.5.yml +2 -1
- data/config/ruby-2.6.yml +2 -1
- data/config/ruby-2.7.yml +2 -1
- data/config/ruby-3.0.yml +2 -1
- data/config/ruby-3.1.yml +2 -1
- data/config/ruby-3.2.yml +2 -1
- data/config/ruby-3.3.yml +2 -1
- data/lib/standard/rubocop/lts/cops.rb +2 -0
- data/lib/standard/rubocop/lts/version.rb +1 -1
- data/lib/standard/rubocop/lts.rb +4 -0
- data/lib/standard-rubocop-lts.rb +4 -0
- data.tar.gz.sig +0 -0
- metadata +35 -33
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b1aa86b2626e183e08dda45dfc9af5e0c085500b0299bd02e16ebf367a0552c
|
4
|
+
data.tar.gz: 753f186c21bfdf8db99965880ba3bc0f36301bff4e10c37cf0a779f6c3ed70da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d27ca3d06a2a66e5614032c0b704a540188435f6128bbd676690e4061aa6217c20b51438a8775455e26251c1c357c5af40c0f8d95461d0bf149003049e22b939
|
7
|
+
data.tar.gz: 455001e3c60c717a80bfbc94989c94cd7d71984eafb5c549e4616df25d6c59c4dec3c72109dd2443fdefe99954f165a8343a2ef2a2758357c2bce80281aad11d
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
10
10
|
### Fixed
|
11
11
|
### Removed
|
12
12
|
|
13
|
+
## [1.0.9] 2023-09-20
|
14
|
+
### Fixed
|
15
|
+
- Gemspec/DevelopmentDependencies changed to gemspec
|
16
|
+
- See: https://github.com/rubygems/rubygems/discussions/5065#discussioncomment-7031586
|
17
|
+
### Changed
|
18
|
+
- standard v1.31.1
|
19
|
+
- standard-performance v1.2
|
20
|
+
- simplecov-rcov dev dependency back to mainline release 0.3.3
|
21
|
+
|
22
|
+
## [1.0.8] 2023-07-07
|
23
|
+
### Fixed
|
24
|
+
- compatibility with changes from standard v1.30.1
|
25
|
+
|
13
26
|
## [1.0.7] 2023-06-08
|
14
27
|
### Changed
|
15
28
|
- follow best practices for gemspec
|
data/README.md
CHANGED
@@ -173,6 +173,7 @@ inherit_mode:
|
|
173
173
|
- Include
|
174
174
|
|
175
175
|
require:
|
176
|
+
- standard-rubocop-lts
|
176
177
|
- standard
|
177
178
|
- standard-performance
|
178
179
|
- standard-custom
|
@@ -180,7 +181,7 @@ require:
|
|
180
181
|
|
181
182
|
# Load basic rules for this version of Ruby from standard.
|
182
183
|
# Rules are overridden in a LIFO stack.
|
183
|
-
# If rubocop-performance is
|
184
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
184
185
|
# then rubocop-performance's rules will take precedence.
|
185
186
|
# This is the opposite of what you might expect.
|
186
187
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/internal/base.yml
CHANGED
@@ -6,10 +6,10 @@ Gemspec/DependencyVersion:
|
|
6
6
|
Enabled: true
|
7
7
|
EnforcedStyle: required
|
8
8
|
|
9
|
-
# See:
|
9
|
+
# See: https://github.com/rubygems/rubygems/discussions/5065#discussioncomment-7031586
|
10
10
|
Gemspec/DevelopmentDependencies:
|
11
11
|
Enabled: true
|
12
|
-
EnforcedStyle:
|
12
|
+
EnforcedStyle: gemspec
|
13
13
|
|
14
14
|
# Alphabetizing lists enforces minimal churn in git history
|
15
15
|
Gemspec/OrderedDependencies:
|
data/config/ruby-1.8.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-1.8.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-1.9.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-1.9.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.0.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.0.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.1.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.1.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.2.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.2.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.3.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.3.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.4.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.4.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.5.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.5.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.6.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.6.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-2.7.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-2.7.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-3.0.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-3.0.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-3.1.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-3.1.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-3.2.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-3.2.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -17,7 +18,7 @@ require:
|
|
17
18
|
|
18
19
|
# Load basic rules for this version of Ruby from standard.
|
19
20
|
# Rules are overridden in a LIFO stack.
|
20
|
-
# If rubocop-performance is
|
21
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
21
22
|
# then rubocop-performance's rules will take precedence.
|
22
23
|
# This is the opposite of what you might expect.
|
23
24
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/config/ruby-3.3.yml
CHANGED
@@ -10,6 +10,7 @@ inherit_from:
|
|
10
10
|
- ./internal/ruby-3.3.yml
|
11
11
|
|
12
12
|
require:
|
13
|
+
- standard-rubocop-lts
|
13
14
|
- standard
|
14
15
|
- standard-performance
|
15
16
|
- standard-custom
|
@@ -20,7 +21,7 @@ require:
|
|
20
21
|
# inherit_gem:
|
21
22
|
# standard: config/ruby-3.3.yml
|
22
23
|
# Rules are overridden in a LIFO stack.
|
23
|
-
# If rubocop-performance is
|
24
|
+
# If rubocop-performance is listed first, and standard-performance after it,
|
24
25
|
# then rubocop-performance's rules will take precedence.
|
25
26
|
# This is the opposite of what you might expect.
|
26
27
|
# Below: standard's rules override rubocop-performance's (mostly disabling rules)
|
data/lib/standard/rubocop/lts.rb
CHANGED
@@ -2,8 +2,12 @@
|
|
2
2
|
|
3
3
|
# external libs
|
4
4
|
require "version_gem"
|
5
|
+
require "rubocop"
|
6
|
+
require "standard-custom"
|
5
7
|
|
6
8
|
require_relative "lts/version"
|
9
|
+
# Load any Cops that aren't explicitly loaded by standard's plugins (e.g. standard-custom).
|
10
|
+
require_relative "lts/cops"
|
7
11
|
|
8
12
|
# Namespace for this library
|
9
13
|
module Standard
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standard-rubocop-lts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -12,31 +12,31 @@ cert_chain:
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
13
|
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
14
14
|
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
15
|
-
|
15
|
+
A2NvbTAeFw0yMzA5MjAxNzMwMjhaFw0yNDA5MTkxNzMwMjhaMEMxFTATBgNVBAMM
|
16
16
|
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
17
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA+a9UvHo3
|
18
|
+
84k96WgU5Kk5HB+cLZs/modjorsTfqY67MJF5nNvAoqcKTUBW4uG+Zpfnm3jaDO5
|
19
|
+
GxhJEIZWfndYzycHT2KMVQ1uTP82ba8ZaKrPlPIafkbui3mdds47qsmqHiblKERg
|
20
|
+
U532lkwfqHDlJwE7OBZQ59EwWWLynlT/yAUHpOBbqIuHKUxdpmBI+sIjrZcD1e05
|
21
|
+
WmjkO6fwIdC5oM757aoPxIgXD587VOViH11Vkm2doskj4T8yONtwVHlcrrhJ9Bzd
|
22
|
+
/zdp6vEn7GZQrABvpOlqwWxQ72ZnFhJe/RJZf6CXOPOh69Ai0QKYl2a1sYuCJKS3
|
23
|
+
nsBnxXJINEEznjR7rZjNUmYD+CZqfjzgPqedRxTlASe7iA4w7xZOqMDzcuhNwcUQ
|
24
|
+
tMEH6BTktxKP3jXZPXRfHCf6s+HRVb6vezAonTBVyydf5Xp5VwWkd6cwm+2BzHl5
|
25
|
+
7kc/3lLxKMcsyEUprAsk8LdHohwZdC267l+RS++AP6Cz6x+nB3oGob19AgMBAAGj
|
26
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQCSSas60GqqMjt
|
27
|
+
xR7LoY1gucEvtzAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
28
28
|
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
29
|
+
ggGBAMl9ifcw5p+PdvB7dCPoNKoVdp/2LbC9ztETHuYL2gUMJB6UoS3o9c/piSuR
|
30
|
+
V3ZMQaijmNu6ms1bWAtJ66LjmYrVflJtf9yp31Kierr9LpisMSUx2qbMOHGa8d2Z
|
31
|
+
vCUWPF8E9Cg0mP3GAyZ6qql8jDh/anUKeksPXqJvNxNPDu2DVYsa/IWdl96whzS4
|
32
|
+
Bl7SwB1E7agps40UcshCSKaVDOU0M+XN6SrnJMElnBic+KSAkBkVFbzS0BE4ODZM
|
33
|
+
BgE6nYzQ05qhuvbE+oGdACTlemNtDDWCh0uw+7x0q2PocGIDU5zsPn/WNTkCXPmB
|
34
|
+
CHGvqDNWq4M7ncTKAaS2XExgyb7uPdq9fKiOW8nmH+zCiGzJXzBWwZlKf7L4Ht9E
|
35
|
+
a3f0e5C+zvee9Z5Ng9ciyfav9/fcXgYt5MjoBv27THr5XfBhgOCIHSYW2tqJmWKi
|
36
|
+
KuxrfYrN+9HvMdm+nZ6TypmKftHY3Gj+/uu+g8Icm/zrvTWAEE0mcJOkfrIoNPJb
|
37
|
+
pF8dMA==
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date: 2023-
|
39
|
+
date: 2023-09-20 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: standard
|
@@ -44,7 +44,7 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 1.31.1
|
48
48
|
- - "<"
|
49
49
|
- !ruby/object:Gem::Version
|
50
50
|
version: '2'
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
requirements:
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version:
|
57
|
+
version: 1.31.1
|
58
58
|
- - "<"
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '2'
|
@@ -102,9 +102,9 @@ dependencies:
|
|
102
102
|
name: standard-performance
|
103
103
|
requirement: !ruby/object:Gem::Requirement
|
104
104
|
requirements:
|
105
|
-
- - "
|
105
|
+
- - ">="
|
106
106
|
- !ruby/object:Gem::Version
|
107
|
-
version: '1.
|
107
|
+
version: '1.2'
|
108
108
|
- - "<"
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '2'
|
@@ -112,9 +112,9 @@ dependencies:
|
|
112
112
|
prerelease: false
|
113
113
|
version_requirements: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "
|
115
|
+
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: '1.
|
117
|
+
version: '1.2'
|
118
118
|
- - "<"
|
119
119
|
- !ruby/object:Gem::Version
|
120
120
|
version: '2'
|
@@ -162,7 +162,9 @@ files:
|
|
162
162
|
- config/ruby-3.1.yml
|
163
163
|
- config/ruby-3.2.yml
|
164
164
|
- config/ruby-3.3.yml
|
165
|
+
- lib/standard-rubocop-lts.rb
|
165
166
|
- lib/standard/rubocop/lts.rb
|
167
|
+
- lib/standard/rubocop/lts/cops.rb
|
166
168
|
- lib/standard/rubocop/lts/version.rb
|
167
169
|
- sig/standard/rubocop/lts.rbs
|
168
170
|
homepage: https://gitlab.com/rubocop-lts/standard-rubocop-lts
|
@@ -170,10 +172,10 @@ licenses:
|
|
170
172
|
- MIT
|
171
173
|
metadata:
|
172
174
|
homepage_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts
|
173
|
-
source_code_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/tree/v1.0.
|
174
|
-
changelog_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/v1.0.
|
175
|
+
source_code_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/tree/v1.0.9
|
176
|
+
changelog_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/v1.0.9/CHANGELOG.md
|
175
177
|
bug_tracker_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/issues
|
176
|
-
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/1.0.
|
178
|
+
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/1.0.9
|
177
179
|
wiki_uri: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/wikis/home
|
178
180
|
funding_uri: https://liberapay.com/pboling
|
179
181
|
rubygems_mfa_required: 'true'
|
@@ -192,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
194
|
- !ruby/object:Gem::Version
|
193
195
|
version: '0'
|
194
196
|
requirements: []
|
195
|
-
rubygems_version: 3.4.
|
197
|
+
rubygems_version: 3.4.19
|
196
198
|
signing_key:
|
197
199
|
specification_version: 4
|
198
200
|
summary: Extended Standard Ruby Configs for Finely Aged Rubies
|
metadata.gz.sig
CHANGED
Binary file
|