rubocop-lts 14.0.1 → 14.1.1

Sign up to get free protection for your applications and to get access to all the features.
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/base.yml ADDED
@@ -0,0 +1,2 @@
1
+ AllCops:
2
+ DisplayCopNames: true # Display the name of the failing cops
data/config/rails.yml ADDED
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/rails.yml
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/rails_rspec.yml
data/config/rspec.yml ADDED
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/rspec.yml
data/config/ruby.yml ADDED
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/ruby.yml
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/ruby_rspec.yml
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/rubygem.yml
@@ -0,0 +1,4 @@
1
+ inherit_from: ./base.yml
2
+
3
+ inherit_gem:
4
+ rubocop-ruby2_5: rubocop-lts/rubygem_rspec.yml
@@ -2,6 +2,8 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "14.0.1"
5
+ module Version
6
+ VERSION = "14.1.1"
7
+ end
6
8
  end
7
9
  end
data/lib/rubocop/lts.rb CHANGED
@@ -1,10 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # external libs
4
+ require "version_gem"
5
+ require "rubocop/ruby2_5"
6
+
3
7
  require_relative "lts/version"
4
8
 
5
9
  module Rubocop
6
10
  module Lts
7
11
  class Error < StandardError; end
8
- # Your code goes here...
12
+
13
+ module_function def install_tasks
14
+ Rubocop::Ruby25.install_tasks
15
+ end
9
16
  end
10
17
  end
18
+
19
+ Rubocop::Lts::Version.class_eval do
20
+ extend VersionGem::Basic
21
+ end
data/rubocop-lts.yml CHANGED
@@ -1,2 +1,15 @@
1
- inherit_gem:
2
- rubocop-ruby2_5: 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,146 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.0.1
4
+ version: 14.1.1
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-30 00:00:00.000000000 Z
12
40
  dependencies:
13
41
  - !ruby/object:Gem::Dependency
14
42
  name: rubocop-ruby2_5
15
43
  requirement: !ruby/object:Gem::Requirement
16
44
  requirements:
17
- - - "~>"
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 2.0.3
48
+ - - "<"
49
+ - !ruby/object:Gem::Version
50
+ version: '3'
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 2.0.3
58
+ - - "<"
59
+ - !ruby/object:Gem::Version
60
+ version: '3'
61
+ - !ruby/object:Gem::Dependency
62
+ name: standard-rubocop-lts
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
18
66
  - !ruby/object:Gem::Version
19
67
  version: 1.0.3
68
+ - - "<"
69
+ - !ruby/object:Gem::Version
70
+ version: '3'
20
71
  type: :runtime
21
72
  prerelease: false
22
73
  version_requirements: !ruby/object:Gem::Requirement
23
74
  requirements:
24
- - - "~>"
75
+ - - ">="
25
76
  - !ruby/object:Gem::Version
26
77
  version: 1.0.3
27
- description: Rubocop LTS - Chaos Reduction In a Bottle
78
+ - - "<"
79
+ - !ruby/object:Gem::Version
80
+ version: '3'
81
+ - !ruby/object:Gem::Dependency
82
+ name: version_gem
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: 1.1.2
88
+ - - "<"
89
+ - !ruby/object:Gem::Version
90
+ version: '3'
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 1.1.2
98
+ - - "<"
99
+ - !ruby/object:Gem::Version
100
+ version: '3'
101
+ - !ruby/object:Gem::Dependency
102
+ name: rubocop-packaging
103
+ requirement: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - "~>"
106
+ - !ruby/object:Gem::Version
107
+ version: '0.5'
108
+ type: :development
109
+ prerelease: false
110
+ version_requirements: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: '0.5'
115
+ - !ruby/object:Gem::Dependency
116
+ name: rubocop-rspec
117
+ requirement: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - "~>"
120
+ - !ruby/object:Gem::Version
121
+ version: '2.22'
122
+ type: :development
123
+ prerelease: false
124
+ version_requirements: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - "~>"
127
+ - !ruby/object:Gem::Version
128
+ version: '2.22'
129
+ - !ruby/object:Gem::Dependency
130
+ name: rspec-block_is_expected
131
+ requirement: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - "~>"
134
+ - !ruby/object:Gem::Version
135
+ version: '1.0'
136
+ type: :development
137
+ prerelease: false
138
+ version_requirements: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - "~>"
141
+ - !ruby/object:Gem::Version
142
+ version: '1.0'
143
+ description: Configure RuboCop + a bevy of friends to gradually lint Ruby code
28
144
  email:
29
145
  - peter.boling@gmail.com
30
146
  executables: []
@@ -37,20 +153,29 @@ files:
37
153
  - LICENSE.txt
38
154
  - README.md
39
155
  - SECURITY.md
156
+ - config/base.yml
157
+ - config/rails.yml
158
+ - config/rails_rspec.yml
159
+ - config/rspec.yml
160
+ - config/ruby.yml
161
+ - config/ruby_rspec.yml
162
+ - config/rubygem.yml
163
+ - config/rubygem_rspec.yml
40
164
  - lib/rubocop/lts.rb
41
165
  - lib/rubocop/lts/version.rb
42
166
  - rubocop-lts.yml
43
167
  - sig/rubocop/lts.rbs
44
- homepage: https://github.com/rubocop-lts/rubocop-lts
168
+ homepage: https://gitlab.com/rubocop-lts/rubocop-lts
45
169
  licenses:
46
170
  - MIT
47
171
  metadata:
48
- homepage_uri: https://github.com/rubocop-lts/rubocop-lts
49
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v14.0.1
50
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v14.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/14.0.1
53
- wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
172
+ homepage_uri: https://rubocop-lts.gitlab.io/
173
+ source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/v14.1.1
174
+ changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/v14.1.1/CHANGELOG.md
175
+ bug_tracker_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/issues
176
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/14.1.1
177
+ wiki_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/wiki
178
+ funding_uri: https://liberapay.com/pboling
54
179
  rubygems_mfa_required: 'true'
55
180
  post_install_message:
56
181
  rdoc_options: []
@@ -60,18 +185,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
60
185
  requirements:
61
186
  - - ">="
62
187
  - !ruby/object:Gem::Version
63
- version: 2.5.0
64
- - - "<"
65
- - !ruby/object:Gem::Version
66
- version: '3.2'
188
+ version: '2.7'
67
189
  required_rubygems_version: !ruby/object:Gem::Requirement
68
190
  requirements:
69
191
  - - ">="
70
192
  - !ruby/object:Gem::Version
71
193
  version: '0'
72
194
  requirements: []
73
- rubygems_version: 3.3.15
195
+ rubygems_version: 3.4.13
74
196
  signing_key:
75
197
  specification_version: 4
76
- summary: Rubocop LTS - Semantically Versioned
198
+ summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Shopify + Gradual'
77
199
  test_files: []
metadata.gz.sig ADDED
@@ -0,0 +1 @@
1
+ m�蒾-Ca�>3�ʹ�]^��E�K�$C2��3�o�JN��O^�N�o�Ȭ"���:��a/GB#�%�'�h1��o�Q��s~�f��U b�|K�lym��^ z�ٓB�V2�Y� �A�FPC�0�Ħ��M1���gl�a����4ք^*��g�򘃩��h��A��~��p���c�w�M�4�������K&WLg����T+�* ��xY��K\ ������t<��+�Mdu ���� (�3�(MZ?,���xp�K�$7X�(�i�4��I4%�F��"�ٺ�H��,l�>Ӈ�_��je�I���m,V�e�yU[�)�5c�������nYTHקv�@'-��?P� 44��n��3�(F>T �H