rubocop-ruby3_2 2.0.7 → 3.0.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +4 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/CONTRIBUTING.md +1 -1
- data/LICENSE.txt +0 -0
- data/README.md +50 -7
- data/SECURITY.md +12 -4
- data/lib/rubocop/ruby3_2/railtie.rb +0 -0
- data/lib/rubocop/ruby3_2/rakelib/rubocop_gradual.rake +0 -0
- data/lib/rubocop/ruby3_2/tasks.rb +0 -0
- data/lib/rubocop/ruby3_2/version.rb +1 -1
- data/lib/rubocop/ruby3_2.rb +0 -0
- data/rubocop-lts/rails.yml +6 -1
- data/rubocop-lts/rails_rspec.yml +1 -1
- data/rubocop-lts/rspec.yml +1 -5
- data/rubocop-lts/ruby.yml +10 -14
- data/rubocop-lts/ruby_rspec.yml +1 -1
- data/rubocop-lts/rubygem.yml +2 -2
- data/rubocop-lts/rubygem_rspec.yml +1 -1
- data/rubocop-lts/strict/rails.yml +0 -0
- data/rubocop-lts/strict/rspec.yml +0 -0
- data/rubocop-lts/strict/ruby.yml +0 -0
- data/rubocop.yml +0 -0
- data/sig/rubocop/ruby3_2.rbs +0 -0
- data.tar.gz.sig +0 -0
- metadata +218 -53
- 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: a3ddd751a4aa8f38a928617910d733425c9183ec75e1c6384811c1c9e743bd55
|
|
4
|
+
data.tar.gz: a9886218c128a34d5d8a2588cab0c342773eed2a98a05266d78182726e7c6607
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fb842ad5ba196f82982df65cce9f629a2dd4b60e9561fad94367da4c0dadac7e95b7e65231802d053e1db831095c90d81ebe45fcfa9790f278daec9a772895f
|
|
7
|
+
data.tar.gz: ee2af44c5326d0ffb4c2a64edae26ddf48d79a3c2fa56127f8f02692508d6a09f4c397609f80ff85ee97c162c6e74fef9bf25b4a3fcd78a4b4ff3749c247ad59
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
### Added
|
|
9
9
|
### Changed
|
|
10
|
+
- Tidelift for Reporting Security vulnerabilities
|
|
11
|
+
- Updated `standard-rubocop-lts` dependency to the `2.x` series.
|
|
10
12
|
### Fixed
|
|
11
13
|
### Removed
|
|
14
|
+
- rubocop-shopify because they boiled the ocean
|
|
15
|
+
- turning cops off isn't copacetic with the goal of strict compatibility
|
|
12
16
|
|
|
13
17
|
## [2.0.7] 2023-06-13
|
|
14
18
|
### Changed
|
data/CODE_OF_CONDUCT.md
CHANGED
|
File without changes
|
data/CONTRIBUTING.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/rubocop-lts/rubocop-ruby3_2][🚎src-main]
|
|
4
4
|
. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
|
5
|
-
the [code of conduct][conduct].
|
|
5
|
+
the [code of conduct][🤝conduct].
|
|
6
6
|
|
|
7
7
|
To submit a patch, please fork the project and create a patch with tests. Once you're happy with it send a pull request
|
|
8
8
|
and post a message to the [gitter chat][🏘chat].
|
data/LICENSE.txt
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -16,6 +16,51 @@
|
|
|
16
16
|
</a>
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
|
+
# 🦾 Rubocop::Ruby32
|
|
20
|
+
|
|
21
|
+
💡 See the intro [blog post](https://dev.to/pboling/rubocop-ruby-matrix-gems-nj)!
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
The **RuboCop LTS** family of gems is the distillation of almost 20 years
|
|
26
|
+
of my own Ruby expertise and source code diving,
|
|
27
|
+
built on the shoulders of the expertise of many others;
|
|
28
|
+
organizing that expertise into per-Ruby-version sets of configurations.
|
|
29
|
+
|
|
30
|
+
Although the situation has improved somewhat,
|
|
31
|
+
it remains [_unsafe_ to upgrade RuboCop, or Standard][Why-Build-This],
|
|
32
|
+
in a project that supports EOL Rubies.
|
|
33
|
+
|
|
34
|
+
I hope it helps others avoid some of the challenges I've had with library maintenance,
|
|
35
|
+
and supporting decade-old mission-critical applications.
|
|
36
|
+
|
|
37
|
+
Avoid bike-shedding, use `rubocop-lts` in every project, and
|
|
38
|
+
let it manage your linting complexity!
|
|
39
|
+
|
|
40
|
+
If the `rubocop-lts` stack of libraries has helped you, or your organization,
|
|
41
|
+
please support my efforts by making a donation, or becoming a sponsor.
|
|
42
|
+
|
|
43
|
+
[Why-Build-This]: https://rubocop-lts.gitlab.io/about/#why-build-this-
|
|
44
|
+
|
|
45
|
+
<div id="badges">
|
|
46
|
+
|
|
47
|
+
[![Liberapay Patrons][⛳liberapay-img]][⛳liberapay]
|
|
48
|
+
[![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor]
|
|
49
|
+
|
|
50
|
+
<span class="badge-buymeacoffee">
|
|
51
|
+
<a href="https://ko-fi.com/O5O86SNP4" target='_blank' title="Donate to my FLOSS or refugee efforts at ko-fi.com"><img src="https://img.shields.io/badge/buy%20me%20coffee-donate-yellow.svg" alt="Buy me coffee donation button" /></a>
|
|
52
|
+
</span>
|
|
53
|
+
<span class="badge-patreon">
|
|
54
|
+
<a href="https://patreon.com/galtzo" title="Donate to my FLOSS or refugee efforts using Patreon"><img src="https://img.shields.io/badge/patreon-donate-yellow.svg" alt="Patreon donate button" /></a>
|
|
55
|
+
</span>
|
|
56
|
+
|
|
57
|
+
</div>
|
|
58
|
+
|
|
59
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/patrons/pboling.svg?logo=liberapay
|
|
60
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
61
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
62
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
63
|
+
|
|
19
64
|
---
|
|
20
65
|
|
|
21
66
|
NOTE: You might be interested in [`rubocop-lts`][rlts] which sits as a higher level than this gem, and can keep pace with whatever version of Ruby you happen to be on.
|
|
@@ -78,17 +123,13 @@ NOTE: You might be interested in [`rubocop-lts`][rlts] which sits as a higher le
|
|
|
78
123
|
[⛳️ini-g]: https://rubygems.org/gems/rubocop-ruby3_2
|
|
79
124
|
[⛳️ini-gh]: https://github.com/rubocop-lts/rubocop-ruby3_2
|
|
80
125
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
See the intro [blog post](https://dev.to/pboling/rubocop-ruby-matrix-gems-nj)!
|
|
84
|
-
|
|
85
|
-
This gem configures many gems for you:
|
|
126
|
+
This gem configures many gems for you,
|
|
127
|
+
and configures all of them for a specific version of Ruby:
|
|
86
128
|
|
|
87
129
|
- rubocop
|
|
88
130
|
- rubocop-gradual
|
|
89
131
|
- rubocop-md
|
|
90
132
|
- rubocop-rake
|
|
91
|
-
- rubocop-shopify
|
|
92
133
|
- rubocop-thread_safety
|
|
93
134
|
- standard
|
|
94
135
|
- standard-performance (incl. rubocop-performance)
|
|
@@ -97,7 +138,7 @@ This gem configures many gems for you:
|
|
|
97
138
|
|
|
98
139
|
And optionally, if you are using RSpec:
|
|
99
140
|
|
|
100
|
-
- rubocop-rspec
|
|
141
|
+
- rubocop-lts-rspec (which loads `rubocop-rspec`, `rubocop-rspec-extra`, `rubocop-env`, and `rubocop-factory_bot`)
|
|
101
142
|
|
|
102
143
|
And optionally, if you are building a RubyGem:
|
|
103
144
|
|
|
@@ -225,6 +266,8 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
225
266
|
|
|
226
267
|
## 🔧 Basic Usage
|
|
227
268
|
|
|
269
|
+
If you use any of the `*_rspec.yml` entrypoints below, add `rubocop-lts-rspec` to your Gemfile or gemspec alongside this gem.
|
|
270
|
+
|
|
228
271
|
If you are using Rails, building a Rubygem, or not using RSpec, see ["Advanced Usage"](#advanced-usage).
|
|
229
272
|
Otherwise, if you using this in plain Ruby _and_ RSpec, you can add to the top of your project's `.rubocop.yml` configuration file:
|
|
230
273
|
|
data/SECURITY.md
CHANGED
|
@@ -6,8 +6,16 @@
|
|
|
6
6
|
|---------|-----------|
|
|
7
7
|
| 2.x | ✅ |
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Security contact information
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
To report a security vulnerability, please use the
|
|
12
|
+
[Tidelift security contact](https://tidelift.com/security).
|
|
13
|
+
Tidelift will coordinate the fix and disclosure.
|
|
14
|
+
|
|
15
|
+
## Additional Support
|
|
16
|
+
|
|
17
|
+
If you are interested in support for versions older than the latest release,
|
|
18
|
+
please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
|
|
19
|
+
or find other sponsorship links in the [README].
|
|
20
|
+
|
|
21
|
+
[README]: README.md
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/rubocop/ruby3_2.rb
CHANGED
|
File without changes
|
data/rubocop-lts/rails.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Customizations/Deviations from Standard
|
|
1
|
+
# Customizations/Deviations from Standard for RuboCop-LTS Rails Coding Standards
|
|
2
2
|
inherit_from:
|
|
3
3
|
- ruby.yml
|
|
4
4
|
- strict/rails.yml
|
|
@@ -6,6 +6,11 @@ inherit_from:
|
|
|
6
6
|
require:
|
|
7
7
|
- rubocop-rails
|
|
8
8
|
|
|
9
|
+
# Rules are overridden in a LIFO stack.
|
|
10
|
+
# If betterlint is listed first, and standard-rails after it,
|
|
11
|
+
# then betterlint's rules will take precedence.
|
|
12
|
+
# This is the opposite of what you might expect.
|
|
13
|
+
# Below: betterlint's rules override standard-rails rules
|
|
9
14
|
inherit_gem:
|
|
10
15
|
betterlint:
|
|
11
16
|
- config/default.yml
|
data/rubocop-lts/rails_rspec.yml
CHANGED
data/rubocop-lts/rspec.yml
CHANGED
data/rubocop-lts/ruby.yml
CHANGED
|
@@ -1,34 +1,30 @@
|
|
|
1
|
-
# Customizations/Deviations from Standard
|
|
1
|
+
# Customizations/Deviations from Standard for Ruby Coding Standards
|
|
2
2
|
|
|
3
|
-
# We want Exclude directives from different
|
|
4
|
-
#
|
|
3
|
+
# We want "Exclude" and "Include" directives from different
|
|
4
|
+
# config files to get merged, not overwritten
|
|
5
5
|
inherit_mode:
|
|
6
6
|
merge:
|
|
7
7
|
- Exclude
|
|
8
8
|
- Include
|
|
9
9
|
|
|
10
|
+
plugins:
|
|
11
|
+
# Rubygems, and Rails apps have Rakefile as a convention, and if they don't, why not?
|
|
12
|
+
# Other Ruby projects don't have a Rakefile by default, so if needed we could add a ruby_vanilla.yml.
|
|
13
|
+
# With Rakefile seems more common than without for projects that bother to install a linter.
|
|
14
|
+
- rubocop-rake
|
|
15
|
+
|
|
10
16
|
require:
|
|
11
17
|
# Loads the Standard Ruby suite of gems, and configures for rubocop-lts:
|
|
12
18
|
- standard-rubocop-lts
|
|
13
19
|
# The goal here is convention over configuration...
|
|
14
20
|
# In light of that, we are well past having convened on Markdown for README docs and such.
|
|
15
21
|
- rubocop-md
|
|
16
|
-
# Rubygems have Rakefile as a convention, and if they don't, why not?
|
|
17
|
-
- rubocop-rake
|
|
18
|
-
# In the vast majority of cases, we will want to be warned about thread unsafe code.
|
|
19
|
-
# In those cases where we intentionally have thread unsafe code,
|
|
20
|
-
# a rubocop:disable is the least of our concerns. :D
|
|
21
|
-
- rubocop-thread_safety
|
|
22
22
|
# RuboCop Gradual can be used in "Require mode", which is a way to replace rubocop with rubocop-gradual:
|
|
23
23
|
- rubocop/gradual/patch
|
|
24
24
|
|
|
25
25
|
# Rules are overridden in a LIFO stack.
|
|
26
|
-
# If rubocop-shopify is loaded first, and standard-rubocop-lts after it,
|
|
27
|
-
# then rubocop-shopify's rules will take precedence.
|
|
28
26
|
# This is the opposite of what you might expect.
|
|
29
|
-
# Below: rubocop-shopify rules will override standard-rubocop-lts's (i.e. standard's) rules.
|
|
30
27
|
inherit_gem:
|
|
31
|
-
rubocop-shopify: rubocop.yml
|
|
32
28
|
standard-rubocop-lts: config/ruby-3.2.yml
|
|
33
29
|
|
|
34
30
|
inherit_from:
|
|
@@ -36,7 +32,7 @@ inherit_from:
|
|
|
36
32
|
|
|
37
33
|
AllCops:
|
|
38
34
|
# When the Ruby community, via RuboCop, adopts a new standard
|
|
39
|
-
# (with additional filtering by standard.rb
|
|
35
|
+
# (with additional filtering by standard.rb) it is good enough for us!
|
|
40
36
|
NewCops: enable
|
|
41
37
|
|
|
42
38
|
# Metrics cops are disabled in Standard by default
|
data/rubocop-lts/ruby_rspec.yml
CHANGED
data/rubocop-lts/rubygem.yml
CHANGED
|
File without changes
|
|
File without changes
|
data/rubocop-lts/strict/ruby.yml
CHANGED
|
File without changes
|
data/rubocop.yml
CHANGED
|
File without changes
|
data/sig/rubocop/ruby3_2.rbs
CHANGED
|
File without changes
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,43 +1,62 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-ruby3_2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.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
|
-
|
|
14
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
16
15
|
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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:
|
|
38
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
40
39
|
dependencies:
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: version_gem
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 1.1.9
|
|
47
|
+
- - "<"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '3'
|
|
50
|
+
type: :runtime
|
|
51
|
+
prerelease: false
|
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: 1.1.9
|
|
57
|
+
- - "<"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '3'
|
|
41
60
|
- !ruby/object:Gem::Dependency
|
|
42
61
|
name: rubocop-gradual
|
|
43
62
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -47,7 +66,7 @@ dependencies:
|
|
|
47
66
|
version: '0.3'
|
|
48
67
|
- - ">="
|
|
49
68
|
- !ruby/object:Gem::Version
|
|
50
|
-
version: 0.3.
|
|
69
|
+
version: 0.3.4
|
|
51
70
|
type: :runtime
|
|
52
71
|
prerelease: false
|
|
53
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -57,7 +76,7 @@ dependencies:
|
|
|
57
76
|
version: '0.3'
|
|
58
77
|
- - ">="
|
|
59
78
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 0.3.
|
|
79
|
+
version: 0.3.4
|
|
61
80
|
- !ruby/object:Gem::Dependency
|
|
62
81
|
name: rubocop-md
|
|
63
82
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -65,6 +84,9 @@ dependencies:
|
|
|
65
84
|
- - "~>"
|
|
66
85
|
- !ruby/object:Gem::Version
|
|
67
86
|
version: '1.2'
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 1.2.1
|
|
68
90
|
type: :runtime
|
|
69
91
|
prerelease: false
|
|
70
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -72,6 +94,9 @@ dependencies:
|
|
|
72
94
|
- - "~>"
|
|
73
95
|
- !ruby/object:Gem::Version
|
|
74
96
|
version: '1.2'
|
|
97
|
+
- - ">="
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: 1.2.1
|
|
75
100
|
- !ruby/object:Gem::Dependency
|
|
76
101
|
name: rubocop-rake
|
|
77
102
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -87,41 +112,115 @@ dependencies:
|
|
|
87
112
|
- !ruby/object:Gem::Version
|
|
88
113
|
version: '0.6'
|
|
89
114
|
- !ruby/object:Gem::Dependency
|
|
90
|
-
name: rubocop-
|
|
115
|
+
name: rubocop-thread_safety
|
|
91
116
|
requirement: !ruby/object:Gem::Requirement
|
|
92
117
|
requirements:
|
|
93
118
|
- - "~>"
|
|
94
119
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '
|
|
120
|
+
version: '0.5'
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: 0.5.1
|
|
96
124
|
type: :runtime
|
|
97
125
|
prerelease: false
|
|
98
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
127
|
requirements:
|
|
100
128
|
- - "~>"
|
|
101
129
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: '
|
|
130
|
+
version: '0.5'
|
|
131
|
+
- - ">="
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: 0.5.1
|
|
103
134
|
- !ruby/object:Gem::Dependency
|
|
104
|
-
name: rubocop-
|
|
135
|
+
name: standard-rubocop-lts
|
|
105
136
|
requirement: !ruby/object:Gem::Requirement
|
|
106
137
|
requirements:
|
|
107
138
|
- - "~>"
|
|
108
139
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: '0
|
|
140
|
+
version: '2.0'
|
|
110
141
|
- - ">="
|
|
111
142
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: 0.
|
|
143
|
+
version: 2.0.2
|
|
113
144
|
type: :runtime
|
|
114
145
|
prerelease: false
|
|
115
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
116
147
|
requirements:
|
|
117
148
|
- - "~>"
|
|
118
149
|
- !ruby/object:Gem::Version
|
|
119
|
-
version: '0
|
|
150
|
+
version: '2.0'
|
|
120
151
|
- - ">="
|
|
121
152
|
- !ruby/object:Gem::Version
|
|
122
|
-
version: 0.
|
|
153
|
+
version: 2.0.2
|
|
123
154
|
- !ruby/object:Gem::Dependency
|
|
124
|
-
name:
|
|
155
|
+
name: rake
|
|
156
|
+
requirement: !ruby/object:Gem::Requirement
|
|
157
|
+
requirements:
|
|
158
|
+
- - "~>"
|
|
159
|
+
- !ruby/object:Gem::Version
|
|
160
|
+
version: '13.1'
|
|
161
|
+
type: :development
|
|
162
|
+
prerelease: false
|
|
163
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
164
|
+
requirements:
|
|
165
|
+
- - "~>"
|
|
166
|
+
- !ruby/object:Gem::Version
|
|
167
|
+
version: '13.1'
|
|
168
|
+
- !ruby/object:Gem::Dependency
|
|
169
|
+
name: kettle-soup-cover
|
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
|
171
|
+
requirements:
|
|
172
|
+
- - "~>"
|
|
173
|
+
- !ruby/object:Gem::Version
|
|
174
|
+
version: '1.1'
|
|
175
|
+
- - ">="
|
|
176
|
+
- !ruby/object:Gem::Version
|
|
177
|
+
version: 1.1.3
|
|
178
|
+
type: :development
|
|
179
|
+
prerelease: false
|
|
180
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
181
|
+
requirements:
|
|
182
|
+
- - "~>"
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '1.1'
|
|
185
|
+
- - ">="
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: 1.1.3
|
|
188
|
+
- !ruby/object:Gem::Dependency
|
|
189
|
+
name: kramdown
|
|
190
|
+
requirement: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - "~>"
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '2.4'
|
|
195
|
+
type: :development
|
|
196
|
+
prerelease: false
|
|
197
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
198
|
+
requirements:
|
|
199
|
+
- - "~>"
|
|
200
|
+
- !ruby/object:Gem::Version
|
|
201
|
+
version: '2.4'
|
|
202
|
+
- !ruby/object:Gem::Dependency
|
|
203
|
+
name: yard
|
|
204
|
+
requirement: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - "~>"
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: '0.9'
|
|
209
|
+
- - ">="
|
|
210
|
+
- !ruby/object:Gem::Version
|
|
211
|
+
version: 0.9.34
|
|
212
|
+
type: :development
|
|
213
|
+
prerelease: false
|
|
214
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
215
|
+
requirements:
|
|
216
|
+
- - "~>"
|
|
217
|
+
- !ruby/object:Gem::Version
|
|
218
|
+
version: '0.9'
|
|
219
|
+
- - ">="
|
|
220
|
+
- !ruby/object:Gem::Version
|
|
221
|
+
version: 0.9.34
|
|
222
|
+
- !ruby/object:Gem::Dependency
|
|
223
|
+
name: rubocop-lts-rspec
|
|
125
224
|
requirement: !ruby/object:Gem::Requirement
|
|
126
225
|
requirements:
|
|
127
226
|
- - "~>"
|
|
@@ -129,8 +228,8 @@ dependencies:
|
|
|
129
228
|
version: '1.0'
|
|
130
229
|
- - ">="
|
|
131
230
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: 1.0.
|
|
133
|
-
type: :
|
|
231
|
+
version: 1.0.1
|
|
232
|
+
type: :development
|
|
134
233
|
prerelease: false
|
|
135
234
|
version_requirements: !ruby/object:Gem::Requirement
|
|
136
235
|
requirements:
|
|
@@ -139,27 +238,95 @@ dependencies:
|
|
|
139
238
|
version: '1.0'
|
|
140
239
|
- - ">="
|
|
141
240
|
- !ruby/object:Gem::Version
|
|
142
|
-
version: 1.0.
|
|
241
|
+
version: 1.0.1
|
|
143
242
|
- !ruby/object:Gem::Dependency
|
|
144
|
-
name:
|
|
243
|
+
name: rubocop-packaging
|
|
145
244
|
requirement: !ruby/object:Gem::Requirement
|
|
146
245
|
requirements:
|
|
246
|
+
- - "~>"
|
|
247
|
+
- !ruby/object:Gem::Version
|
|
248
|
+
version: '0.5'
|
|
147
249
|
- - ">="
|
|
148
250
|
- !ruby/object:Gem::Version
|
|
149
|
-
version:
|
|
150
|
-
|
|
251
|
+
version: 0.5.2
|
|
252
|
+
type: :development
|
|
253
|
+
prerelease: false
|
|
254
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
255
|
+
requirements:
|
|
256
|
+
- - "~>"
|
|
151
257
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: '
|
|
153
|
-
|
|
258
|
+
version: '0.5'
|
|
259
|
+
- - ">="
|
|
260
|
+
- !ruby/object:Gem::Version
|
|
261
|
+
version: 0.5.2
|
|
262
|
+
- !ruby/object:Gem::Dependency
|
|
263
|
+
name: rspec
|
|
264
|
+
requirement: !ruby/object:Gem::Requirement
|
|
265
|
+
requirements:
|
|
266
|
+
- - "~>"
|
|
267
|
+
- !ruby/object:Gem::Version
|
|
268
|
+
version: '3.12'
|
|
269
|
+
type: :development
|
|
154
270
|
prerelease: false
|
|
155
271
|
version_requirements: !ruby/object:Gem::Requirement
|
|
156
272
|
requirements:
|
|
273
|
+
- - "~>"
|
|
274
|
+
- !ruby/object:Gem::Version
|
|
275
|
+
version: '3.12'
|
|
276
|
+
- !ruby/object:Gem::Dependency
|
|
277
|
+
name: rspec-block_is_expected
|
|
278
|
+
requirement: !ruby/object:Gem::Requirement
|
|
279
|
+
requirements:
|
|
280
|
+
- - "~>"
|
|
281
|
+
- !ruby/object:Gem::Version
|
|
282
|
+
version: '1.0'
|
|
157
283
|
- - ">="
|
|
158
284
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 1.
|
|
160
|
-
|
|
285
|
+
version: 1.0.5
|
|
286
|
+
type: :development
|
|
287
|
+
prerelease: false
|
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
289
|
+
requirements:
|
|
290
|
+
- - "~>"
|
|
161
291
|
- !ruby/object:Gem::Version
|
|
162
|
-
version: '
|
|
292
|
+
version: '1.0'
|
|
293
|
+
- - ">="
|
|
294
|
+
- !ruby/object:Gem::Version
|
|
295
|
+
version: 1.0.5
|
|
296
|
+
- !ruby/object:Gem::Dependency
|
|
297
|
+
name: rspec_junit_formatter
|
|
298
|
+
requirement: !ruby/object:Gem::Requirement
|
|
299
|
+
requirements:
|
|
300
|
+
- - "~>"
|
|
301
|
+
- !ruby/object:Gem::Version
|
|
302
|
+
version: '0.6'
|
|
303
|
+
type: :development
|
|
304
|
+
prerelease: false
|
|
305
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
306
|
+
requirements:
|
|
307
|
+
- - "~>"
|
|
308
|
+
- !ruby/object:Gem::Version
|
|
309
|
+
version: '0.6'
|
|
310
|
+
- !ruby/object:Gem::Dependency
|
|
311
|
+
name: rspec-stubbed_env
|
|
312
|
+
requirement: !ruby/object:Gem::Requirement
|
|
313
|
+
requirements:
|
|
314
|
+
- - "~>"
|
|
315
|
+
- !ruby/object:Gem::Version
|
|
316
|
+
version: '1.0'
|
|
317
|
+
- - ">="
|
|
318
|
+
- !ruby/object:Gem::Version
|
|
319
|
+
version: 1.0.4
|
|
320
|
+
type: :development
|
|
321
|
+
prerelease: false
|
|
322
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
323
|
+
requirements:
|
|
324
|
+
- - "~>"
|
|
325
|
+
- !ruby/object:Gem::Version
|
|
326
|
+
version: '1.0'
|
|
327
|
+
- - ">="
|
|
328
|
+
- !ruby/object:Gem::Version
|
|
329
|
+
version: 1.0.4
|
|
163
330
|
description: Configure RuboCop + a bevy of friends to gradually lint Ruby 3.2 code
|
|
164
331
|
email:
|
|
165
332
|
- peter.boling@gmail.com
|
|
@@ -195,14 +362,13 @@ licenses:
|
|
|
195
362
|
- MIT
|
|
196
363
|
metadata:
|
|
197
364
|
homepage_uri: https://github.com/rubocop-lts/rubocop-ruby3_2
|
|
198
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_2/tree/
|
|
199
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_2/blob/
|
|
365
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_2/tree/v3.0.0
|
|
366
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_2/blob/v3.0.0/CHANGELOG.md
|
|
200
367
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby3_2/issues
|
|
201
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_2/
|
|
368
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_2/3.0.0
|
|
202
369
|
funding_uri: https://liberapay.com/pboling
|
|
203
370
|
wiki_uri: https://github.com/rubocop-lts/rubocop-ruby3_2/wiki
|
|
204
371
|
rubygems_mfa_required: 'true'
|
|
205
|
-
post_install_message:
|
|
206
372
|
rdoc_options: []
|
|
207
373
|
require_paths:
|
|
208
374
|
- lib
|
|
@@ -217,8 +383,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
383
|
- !ruby/object:Gem::Version
|
|
218
384
|
version: '0'
|
|
219
385
|
requirements: []
|
|
220
|
-
rubygems_version:
|
|
221
|
-
signing_key:
|
|
386
|
+
rubygems_version: 4.0.11
|
|
222
387
|
specification_version: 4
|
|
223
|
-
summary: 'Rules for Rubies: Rubocop + Standard + Betterlint +
|
|
388
|
+
summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Gradual'
|
|
224
389
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|