rubocop-lts 20.0.1 → 20.2.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.
data/SECURITY.md CHANGED
@@ -2,30 +2,37 @@
2
2
 
3
3
  ## Supported Versions
4
4
 
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: |
18
- | 12.x | :white_check_mark: |
19
- | 13.x | :white_check_mark: |
20
- | 14.x | :white_check_mark: |
21
- | 15.x | :white_check_mark: |
22
- | 16.x | :white_check_mark: |
23
- | 17.x | :white_check_mark: |
24
- | 18.x | :white_check_mark: |
25
- | 19.x | :white_check_mark: |
26
- | 20.x | :white_check_mark: |
27
- | 21.x | :white_check_mark: |
28
- | 22.x | :white_check_mark: |
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
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/rails.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/rails_rspec.yml
data/config/rspec.yml ADDED
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/rspec.yml
data/config/ruby.yml ADDED
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/ruby.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/ruby_rspec.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/rubygem.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby3_0: rubocop-lts/rubygem_rspec.yml
@@ -2,6 +2,8 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "20.0.1"
5
+ module Version
6
+ VERSION = "20.2.0"
7
+ end
6
8
  end
7
9
  end
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
- inherit_gem:
2
- rubocop-ruby3_0: rubocop.yml
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
@@ -1,6 +1,8 @@
1
1
  module Rubocop
2
2
  module Lts
3
- VERSION: String
4
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
3
+ module Version
4
+ VERSION: String
5
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
6
+ end
5
7
  end
6
8
  end
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: 20.0.1
4
+ version: 20.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
8
8
  autorequire:
9
9
  bindir: exe
10
- cert_chain: []
11
- date: 2022-06-09 00:00:00.000000000 Z
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_0
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: 1.0.6
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: 1.0.6
27
- description: Rubocop LTS - Chaos Reduction In a Bottle
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://github.com/rubocop-lts/rubocop-lts
133
+ homepage: https://gitlab.com/rubocop-lts/rubocop-lts
45
134
  licenses:
46
135
  - MIT
47
136
  metadata:
48
- homepage_uri: https://github.com/rubocop-lts/rubocop-lts
49
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v20.0.1
50
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v20.0.1/CHANGELOG.md
51
- bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
52
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/20.0.1
53
- wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
137
+ homepage_uri: https://gitlab.com/rubocop-lts/rubocop-lts
138
+ source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/v20.2.0
139
+ changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/v20.2.0/CHANGELOG.md
140
+ bug_tracker_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/issues
141
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/20.2.0
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.0.0
64
- - - "<"
65
- - !ruby/object:Gem::Version
66
- version: '4.0'
153
+ version: '2.7'
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.3.15
160
+ rubygems_version: 3.4.13
74
161
  signing_key:
75
162
  specification_version: 4
76
- summary: Rubocop LTS - Semantically Versioned
163
+ summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Shopify + Gradual'
77
164
  test_files: []
metadata.gz.sig ADDED
Binary file