rubocop-lts 8.1.1 → 8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51d286f0405f50005511cc859628b3d1a432e2f945d772d4ae484c1b161d8d89
4
- data.tar.gz: 9b0502f1f2a510bcfe672fead15bcac92106714e88e2c148fa7e8eaa398e9ac4
3
+ metadata.gz: dc41549ee7664de0bba93dd35ab597589644cfeb055b88b8e4c105f5c44a48aa
4
+ data.tar.gz: 119a92170b5979fd32399a4380e0978eb2e77b442acdab1b4970ad63b88052f0
5
5
  SHA512:
6
- metadata.gz: caa0cc2abd7b2d175a20623a7f83992aa2c4ee233a5961b194a10475bc457f240daa525c3f4ba66d13f9fa187f4d5b01ac316acb994146efcb1df8c7e242438f
7
- data.tar.gz: 79d9c44d83a87edfffdbd3e5ea1f2ae95ad72739bc84cc355692502a4bf7425ac2f6fe85b67482134317d66d8192e56d2c91f741c8658f0dcea97d0ffca3e23c
6
+ metadata.gz: 16f183c33cb789b878d3fbebf0749e961c9fe0244c978529c7fbd1cb54487b0f765711279fc34c26e6f5e398c8eb1e1d9c13b6b0ea8c17905dc679cdb54df351
7
+ data.tar.gz: 7015f863af65951f3d2620c3f276db70e2b7dd797690419dcc8f9c07f8e4abc67a66e8266243711f5abc53ecbe80eee03dd1865c60910685747557d6844d766f
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -6,9 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
  ### Added
9
+ - Improved linting (via rubocop-rubyX_X)
10
+ - (dev) Improved Gemfile context pattern
11
+ - (dev) Dependencies
12
+ - yard-junk
13
+ - redcarpet
14
+ - pry, IRB alternative (and a binstub)
15
+ - pry-suite
16
+ - debase, for IDE debugging
9
17
  ### Changed
18
+ - Updated the `standard-rubocop-lts` dependency floor to `2.0.0`.
10
19
  ### Fixed
20
+ - (dev) `yard` documentation task
11
21
  ### Removed
22
+ - Removed remaining `rubocop-shopify` usage from the active development toolchain.
12
23
 
13
24
  ## [8.1.1] - 2023-05-30
14
25
  ### Added
@@ -31,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
42
  ### Added
32
43
  - Initial even release supporting Ruby >= 2.2
33
44
 
34
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.1.1...HEAD
45
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.1.1...r2_2-even-v8
35
46
  [8.1.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.1.0...v8.1.1
36
47
  [8.1.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.0.2...v8.1.0
37
48
  [8.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.0.1...v8.0.2
data/CODE_OF_CONDUCT.md CHANGED
File without changes
data/CONTRIBUTING.md CHANGED
File without changes
data/LICENSE.txt CHANGED
File without changes
data/README.md CHANGED
@@ -63,7 +63,6 @@ This gem configures many gems for you:
63
63
  - rubocop-gradual
64
64
  - rubocop-md
65
65
  - rubocop-rake
66
- - rubocop-shopify
67
66
  - rubocop-thread_safety
68
67
  - standard
69
68
  - standard-performance (incl. rubocop-performance)
@@ -72,7 +71,7 @@ This gem configures many gems for you:
72
71
 
73
72
  And optionally, if you are using RSpec:
74
73
 
75
- - rubocop-rspec
74
+ - rubocop-lts-rspec (which loads `rubocop-rspec`, `rubocop-rspec-extra`, `rubocop-env`, and `rubocop-factory_bot`)
76
75
 
77
76
  And optionally, if you are building a RubyGem:
78
77
 
@@ -122,6 +121,13 @@ Or add this line to your application's Gemfile:
122
121
  gem "rubocop-lts", "~> 8.1", require: false
123
122
  ```
124
123
 
124
+ ### Almost Done!
125
+
126
+ Certain use cases **_require_** one or two more development dependencies added manually:
127
+
128
+ - use with a [RubyGem](https://rubocop-lts.gitlab.io/#build-rubygem-)
129
+ - use with a [Rails Application](https://rubocop-lts.gitlab.io/#build-rubygem-)
130
+
125
131
  And then execute:
126
132
 
127
133
  $ bundle
data/SECURITY.md CHANGED
File without changes
data/config/base.yml CHANGED
File without changes
data/config/rails.yml CHANGED
File without changes
@@ -1,3 +1,4 @@
1
+ # RSpec behavior is delegated through the active rubocop-ruby* wrapper to rubocop-lts-rspec.
1
2
  inherit_from: ./base.yml
2
3
 
3
4
  inherit_gem:
data/config/rspec.yml CHANGED
File without changes
data/config/ruby.yml CHANGED
File without changes
@@ -1,3 +1,4 @@
1
+ # RSpec behavior is delegated through the active rubocop-ruby* wrapper to rubocop-lts-rspec.
1
2
  inherit_from: ./base.yml
2
3
 
3
4
  inherit_gem:
data/config/rubygem.yml CHANGED
File without changes
@@ -1,3 +1,4 @@
1
+ # RSpec behavior is delegated through the active rubocop-ruby* wrapper to rubocop-lts-rspec.
1
2
  inherit_from: ./base.yml
2
3
 
3
4
  inherit_gem:
@@ -3,7 +3,7 @@
3
3
  module Rubocop
4
4
  module Lts
5
5
  module Version
6
- VERSION = "8.1.1"
6
+ VERSION = "8.2.0"
7
7
  end
8
8
  end
9
9
  end
data/lib/rubocop/lts.rb CHANGED
File without changes
data/rubocop-lts.yml CHANGED
File without changes
data/sig/rubocop/lts.rbs CHANGED
File without changes
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,42 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.1
4
+ version: 8.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain:
11
10
  - |
12
11
  -----BEGIN CERTIFICATE-----
13
12
  MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
14
13
  ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
15
- A2NvbTAeFw0yMjA5MTgyMzEyMzBaFw0yMzA5MTgyMzEyMzBaMEMxFTATBgNVBAMM
14
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
16
15
  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
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
28
27
  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==
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==
38
37
  -----END CERTIFICATE-----
39
- date: 2023-05-30 00:00:00.000000000 Z
38
+ date: 1980-01-02 00:00:00.000000000 Z
40
39
  dependencies:
41
40
  - !ruby/object:Gem::Dependency
42
41
  name: rubocop-ruby2_2
@@ -44,27 +43,27 @@ dependencies:
44
43
  requirements:
45
44
  - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: 2.0.3
46
+ version: 3.0.0
48
47
  - - "<"
49
48
  - !ruby/object:Gem::Version
50
- version: '3'
49
+ version: '4'
51
50
  type: :runtime
52
51
  prerelease: false
53
52
  version_requirements: !ruby/object:Gem::Requirement
54
53
  requirements:
55
54
  - - ">="
56
55
  - !ruby/object:Gem::Version
57
- version: 2.0.3
56
+ version: 3.0.0
58
57
  - - "<"
59
58
  - !ruby/object:Gem::Version
60
- version: '3'
59
+ version: '4'
61
60
  - !ruby/object:Gem::Dependency
62
61
  name: standard-rubocop-lts
63
62
  requirement: !ruby/object:Gem::Requirement
64
63
  requirements:
65
64
  - - ">="
66
65
  - !ruby/object:Gem::Version
67
- version: 1.0.3
66
+ version: 2.0.2
68
67
  - - "<"
69
68
  - !ruby/object:Gem::Version
70
69
  version: '3'
@@ -74,7 +73,7 @@ dependencies:
74
73
  requirements:
75
74
  - - ">="
76
75
  - !ruby/object:Gem::Version
77
- version: 1.0.3
76
+ version: 2.0.2
78
77
  - - "<"
79
78
  - !ruby/object:Gem::Version
80
79
  version: '3'
@@ -84,7 +83,7 @@ dependencies:
84
83
  requirements:
85
84
  - - ">="
86
85
  - !ruby/object:Gem::Version
87
- version: 1.1.2
86
+ version: 1.1.9
88
87
  - - "<"
89
88
  - !ruby/object:Gem::Version
90
89
  version: '3'
@@ -94,7 +93,7 @@ dependencies:
94
93
  requirements:
95
94
  - - ">="
96
95
  - !ruby/object:Gem::Version
97
- version: 1.1.2
96
+ version: 1.1.9
98
97
  - - "<"
99
98
  - !ruby/object:Gem::Version
100
99
  version: '3'
@@ -113,19 +112,45 @@ dependencies:
113
112
  - !ruby/object:Gem::Version
114
113
  version: '0.5'
115
114
  - !ruby/object:Gem::Dependency
116
- name: rubocop-rspec
115
+ name: kettle-soup-cover
117
116
  requirement: !ruby/object:Gem::Requirement
118
117
  requirements:
119
118
  - - "~>"
120
119
  - !ruby/object:Gem::Version
121
- version: '2.22'
120
+ version: '1.1'
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: 1.1.3
122
124
  type: :development
123
125
  prerelease: false
124
126
  version_requirements: !ruby/object:Gem::Requirement
125
127
  requirements:
126
128
  - - "~>"
127
129
  - !ruby/object:Gem::Version
128
- version: '2.22'
130
+ version: '1.1'
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: 1.1.3
134
+ - !ruby/object:Gem::Dependency
135
+ name: rubocop-lts-rspec
136
+ requirement: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - "~>"
139
+ - !ruby/object:Gem::Version
140
+ version: '1.0'
141
+ - - ">="
142
+ - !ruby/object:Gem::Version
143
+ version: 1.0.1
144
+ type: :development
145
+ prerelease: false
146
+ version_requirements: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - "~>"
149
+ - !ruby/object:Gem::Version
150
+ version: '1.0'
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: 1.0.1
129
154
  - !ruby/object:Gem::Dependency
130
155
  name: rspec-block_is_expected
131
156
  requirement: !ruby/object:Gem::Requirement
@@ -133,6 +158,9 @@ dependencies:
133
158
  - - "~>"
134
159
  - !ruby/object:Gem::Version
135
160
  version: '1.0'
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: 1.0.6
136
164
  type: :development
137
165
  prerelease: false
138
166
  version_requirements: !ruby/object:Gem::Requirement
@@ -140,6 +168,9 @@ dependencies:
140
168
  - - "~>"
141
169
  - !ruby/object:Gem::Version
142
170
  version: '1.0'
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: 1.0.6
143
174
  description: Configure RuboCop + a bevy of friends to gradually lint Ruby code
144
175
  email:
145
176
  - peter.boling@gmail.com
@@ -170,14 +201,13 @@ licenses:
170
201
  - MIT
171
202
  metadata:
172
203
  homepage_uri: https://rubocop-lts.gitlab.io/
173
- source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/v8.1.1
174
- changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/v8.1.1/CHANGELOG.md
204
+ source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/v8.2.0
205
+ changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/v8.2.0/CHANGELOG.md
175
206
  bug_tracker_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/issues
176
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/8.1.1
207
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/8.2.0
177
208
  wiki_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/wiki
178
209
  funding_uri: https://liberapay.com/pboling
179
210
  rubygems_mfa_required: 'true'
180
- post_install_message:
181
211
  rdoc_options: []
182
212
  require_paths:
183
213
  - lib
@@ -192,8 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
192
222
  - !ruby/object:Gem::Version
193
223
  version: '0'
194
224
  requirements: []
195
- rubygems_version: 3.4.13
196
- signing_key:
225
+ rubygems_version: 4.0.11
197
226
  specification_version: 4
198
227
  summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Shopify + Gradual'
199
228
  test_files: []
metadata.gz.sig CHANGED
Binary file