rubocop-ruby1_9 2.0.5 โ 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 +20 -1
- 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/ruby1_9/railtie.rb +0 -0
- data/lib/rubocop/ruby1_9/rakelib/rubocop_gradual.rake +0 -0
- data/lib/rubocop/ruby1_9/tasks.rb +0 -0
- data/lib/rubocop/ruby1_9/version.rb +1 -1
- data/lib/rubocop/ruby1_9.rb +0 -0
- data/rubocop-lts/rails.yml +7 -3
- data/rubocop-lts/rails_rspec.yml +1 -1
- data/rubocop-lts/rspec.yml +1 -5
- data/rubocop-lts/ruby.yml +8 -9
- 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/ruby1_9.rbs +0 -0
- data.tar.gz.sig +0 -0
- metadata +185 -64
- 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: 7a5846f8899e5815dbabb6006a7e9e9ed29d17dfe1d47fd547d2ef128b56691c
|
|
4
|
+
data.tar.gz: 1e00cd0e8ffbb9e6cdb99ccb3fa219cc07cd65ad091ab06a1b262a229e7c38dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3694ff63a3ad33357967f155a9547ea4f175b5e8832015736f4e96ffbc80d52611fef8a3a5a0d28dc590ba4d304e055d75559e87f6a7e0be31b30e7fca3a57c
|
|
7
|
+
data.tar.gz: c689a109d7b1630ec2859abfa5e6e56a6280f6f64da2ba5dcac20104fa3f1f6890252fd9b7bc116ed2ba6c225a6a8d6c01c51269cef1cf4c6b4d72f6b431b3d0
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,26 @@ 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
|
|
16
|
+
|
|
17
|
+
## [2.0.6] 2023-06-14
|
|
18
|
+
### Changed
|
|
19
|
+
- Moved development dependencies out of gemspec
|
|
20
|
+
- rubocop to 1.52.1
|
|
21
|
+
- rubocop-shopify to 2.14
|
|
22
|
+
- standard-custom to 1.0.1
|
|
23
|
+
- standard-rubocop-lts to 1.0.7
|
|
24
|
+
- version_gem to 1.1.3
|
|
25
|
+
### Fixed
|
|
26
|
+
- rubocop/rails.yml config
|
|
27
|
+
- betterlint integration
|
|
28
|
+
- standard-rails integration
|
|
29
|
+
- bin/pry now pre-loads this library
|
|
12
30
|
|
|
13
31
|
## [2.0.5] 2023-06-05
|
|
14
32
|
### Added
|
|
@@ -102,7 +120,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
102
120
|
### Added
|
|
103
121
|
- Initial release
|
|
104
122
|
|
|
105
|
-
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.
|
|
123
|
+
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.6...HEAD
|
|
124
|
+
[2.0.6]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.5...v2.0.6
|
|
106
125
|
[2.0.5]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.4...v2.0.5
|
|
107
126
|
[2.0.4]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.3...v2.0.4
|
|
108
127
|
[2.0.3]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.2...v2.0.3
|
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-ruby1_9][๐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::Ruby19
|
|
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-ruby1_9
|
|
79
124
|
[โณ๏ธini-gh]: https://github.com/rubocop-lts/rubocop-ruby1_9
|
|
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
|
@@ -7,8 +7,16 @@
|
|
|
7
7
|
| 2.x | โ
|
|
|
8
8
|
| 1.x | โ |
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Security contact information
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
To report a security vulnerability, please use the
|
|
13
|
+
[Tidelift security contact](https://tidelift.com/security).
|
|
14
|
+
Tidelift will coordinate the fix and disclosure.
|
|
15
|
+
|
|
16
|
+
## Additional Support
|
|
17
|
+
|
|
18
|
+
If you are interested in support for versions older than the latest release,
|
|
19
|
+
please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
|
|
20
|
+
or find other sponsorship links in the [README].
|
|
21
|
+
|
|
22
|
+
[README]: README.md
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/rubocop/ruby1_9.rb
CHANGED
|
File without changes
|
data/rubocop-lts/rails.yml
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
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
|
|
5
5
|
|
|
6
6
|
require:
|
|
7
7
|
- rubocop-rails
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
|
|
9
|
+
inherit_gem:
|
|
10
|
+
betterlint:
|
|
11
|
+
- config/default.yml
|
|
12
|
+
standard-rails:
|
|
13
|
+
- config/base.yml
|
|
10
14
|
|
|
11
15
|
# Rails specific customizations
|
data/rubocop-lts/rails_rspec.yml
CHANGED
data/rubocop-lts/rspec.yml
CHANGED
data/rubocop-lts/ruby.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
@@ -14,7 +14,6 @@ require:
|
|
|
14
14
|
# In light of that, we are well past having convened on Markdown for README docs and such.
|
|
15
15
|
- rubocop-md
|
|
16
16
|
# Rubygems have Rakefile as a convention, and if they don't, why not?
|
|
17
|
-
- rubocop-rake
|
|
18
17
|
# In the vast majority of cases, we will want to be warned about thread unsafe code.
|
|
19
18
|
# In those cases where we intentionally have thread unsafe code,
|
|
20
19
|
# a rubocop:disable is the least of our concerns. :D
|
|
@@ -23,12 +22,8 @@ require:
|
|
|
23
22
|
- rubocop/gradual/patch
|
|
24
23
|
|
|
25
24
|
# 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
25
|
# 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
26
|
inherit_gem:
|
|
31
|
-
rubocop-shopify: rubocop.yml
|
|
32
27
|
standard-rubocop-lts: config/ruby-1.9.yml
|
|
33
28
|
|
|
34
29
|
inherit_from:
|
|
@@ -36,13 +31,17 @@ inherit_from:
|
|
|
36
31
|
|
|
37
32
|
AllCops:
|
|
38
33
|
# When the Ruby community, via RuboCop, adopts a new standard
|
|
39
|
-
# (with additional filtering by standard.rb
|
|
34
|
+
# (with additional filtering by standard.rb) it is good enough for us!
|
|
40
35
|
NewCops: enable
|
|
41
36
|
|
|
42
37
|
# Metrics cops are disabled in Standard by default
|
|
43
38
|
Metrics:
|
|
44
39
|
Enabled: true
|
|
45
40
|
|
|
41
|
+
plugins:
|
|
42
|
+
# Rubygems have Rakefile as a convention, and if they don't, why not?
|
|
43
|
+
- rubocop-rake
|
|
44
|
+
|
|
46
45
|
# Ruby specific customizations
|
|
47
46
|
Layout/LineLength:
|
|
48
47
|
Max: 120
|
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/ruby1_9.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-ruby1_9
|
|
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
|
|
@@ -45,6 +64,9 @@ dependencies:
|
|
|
45
64
|
- - "~>"
|
|
46
65
|
- !ruby/object:Gem::Version
|
|
47
66
|
version: '0.3'
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 0.3.4
|
|
48
70
|
type: :runtime
|
|
49
71
|
prerelease: false
|
|
50
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -52,6 +74,9 @@ dependencies:
|
|
|
52
74
|
- - "~>"
|
|
53
75
|
- !ruby/object:Gem::Version
|
|
54
76
|
version: '0.3'
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: 0.3.4
|
|
55
80
|
- !ruby/object:Gem::Dependency
|
|
56
81
|
name: rubocop-md
|
|
57
82
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -59,6 +84,9 @@ dependencies:
|
|
|
59
84
|
- - "~>"
|
|
60
85
|
- !ruby/object:Gem::Version
|
|
61
86
|
version: '1.2'
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 1.2.1
|
|
62
90
|
type: :runtime
|
|
63
91
|
prerelease: false
|
|
64
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -66,6 +94,9 @@ dependencies:
|
|
|
66
94
|
- - "~>"
|
|
67
95
|
- !ruby/object:Gem::Version
|
|
68
96
|
version: '1.2'
|
|
97
|
+
- - ">="
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: 1.2.1
|
|
69
100
|
- !ruby/object:Gem::Dependency
|
|
70
101
|
name: rubocop-rake
|
|
71
102
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -81,73 +112,133 @@ dependencies:
|
|
|
81
112
|
- !ruby/object:Gem::Version
|
|
82
113
|
version: '0.6'
|
|
83
114
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: rubocop-
|
|
115
|
+
name: rubocop-thread_safety
|
|
85
116
|
requirement: !ruby/object:Gem::Requirement
|
|
86
117
|
requirements:
|
|
87
118
|
- - "~>"
|
|
88
119
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
120
|
+
version: '0.5'
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: 0.5.1
|
|
90
124
|
type: :runtime
|
|
91
125
|
prerelease: false
|
|
92
126
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
127
|
requirements:
|
|
94
128
|
- - "~>"
|
|
95
129
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
130
|
+
version: '0.5'
|
|
131
|
+
- - ">="
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: 0.5.1
|
|
97
134
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name: rubocop-
|
|
135
|
+
name: standard-rubocop-lts
|
|
99
136
|
requirement: !ruby/object:Gem::Requirement
|
|
100
137
|
requirements:
|
|
101
138
|
- - "~>"
|
|
102
139
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '0
|
|
140
|
+
version: '2.0'
|
|
141
|
+
- - ">="
|
|
142
|
+
- !ruby/object:Gem::Version
|
|
143
|
+
version: 2.0.2
|
|
104
144
|
type: :runtime
|
|
105
145
|
prerelease: false
|
|
106
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
147
|
requirements:
|
|
108
148
|
- - "~>"
|
|
109
149
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '0
|
|
150
|
+
version: '2.0'
|
|
151
|
+
- - ">="
|
|
152
|
+
- !ruby/object:Gem::Version
|
|
153
|
+
version: 2.0.2
|
|
111
154
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
155
|
+
name: rake
|
|
113
156
|
requirement: !ruby/object:Gem::Requirement
|
|
114
157
|
requirements:
|
|
115
|
-
- - "
|
|
158
|
+
- - "~>"
|
|
116
159
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: 1
|
|
118
|
-
|
|
160
|
+
version: '13.1'
|
|
161
|
+
type: :development
|
|
162
|
+
prerelease: false
|
|
163
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
164
|
+
requirements:
|
|
165
|
+
- - "~>"
|
|
119
166
|
- !ruby/object:Gem::Version
|
|
120
|
-
version: '
|
|
121
|
-
|
|
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
|
|
122
179
|
prerelease: false
|
|
123
180
|
version_requirements: !ruby/object:Gem::Requirement
|
|
124
181
|
requirements:
|
|
182
|
+
- - "~>"
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '1.1'
|
|
125
185
|
- - ">="
|
|
126
186
|
- !ruby/object:Gem::Version
|
|
127
|
-
version: 1.
|
|
128
|
-
|
|
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
|
+
- - "~>"
|
|
129
200
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: '2'
|
|
201
|
+
version: '2.4'
|
|
131
202
|
- !ruby/object:Gem::Dependency
|
|
132
|
-
name:
|
|
203
|
+
name: yard
|
|
133
204
|
requirement: !ruby/object:Gem::Requirement
|
|
134
205
|
requirements:
|
|
135
|
-
- - "
|
|
206
|
+
- - "~>"
|
|
136
207
|
- !ruby/object:Gem::Version
|
|
137
|
-
version:
|
|
138
|
-
- - "
|
|
208
|
+
version: '0.9'
|
|
209
|
+
- - ">="
|
|
139
210
|
- !ruby/object:Gem::Version
|
|
140
|
-
version:
|
|
141
|
-
type: :
|
|
211
|
+
version: 0.9.34
|
|
212
|
+
type: :development
|
|
142
213
|
prerelease: false
|
|
143
214
|
version_requirements: !ruby/object:Gem::Requirement
|
|
144
215
|
requirements:
|
|
216
|
+
- - "~>"
|
|
217
|
+
- !ruby/object:Gem::Version
|
|
218
|
+
version: '0.9'
|
|
145
219
|
- - ">="
|
|
146
220
|
- !ruby/object:Gem::Version
|
|
147
|
-
version:
|
|
148
|
-
|
|
221
|
+
version: 0.9.34
|
|
222
|
+
- !ruby/object:Gem::Dependency
|
|
223
|
+
name: rubocop-lts-rspec
|
|
224
|
+
requirement: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - "~>"
|
|
149
227
|
- !ruby/object:Gem::Version
|
|
150
|
-
version: '
|
|
228
|
+
version: '1.0'
|
|
229
|
+
- - ">="
|
|
230
|
+
- !ruby/object:Gem::Version
|
|
231
|
+
version: 1.0.1
|
|
232
|
+
type: :development
|
|
233
|
+
prerelease: false
|
|
234
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
235
|
+
requirements:
|
|
236
|
+
- - "~>"
|
|
237
|
+
- !ruby/object:Gem::Version
|
|
238
|
+
version: '1.0'
|
|
239
|
+
- - ">="
|
|
240
|
+
- !ruby/object:Gem::Version
|
|
241
|
+
version: 1.0.1
|
|
151
242
|
- !ruby/object:Gem::Dependency
|
|
152
243
|
name: rubocop-packaging
|
|
153
244
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,6 +246,9 @@ dependencies:
|
|
|
155
246
|
- - "~>"
|
|
156
247
|
- !ruby/object:Gem::Version
|
|
157
248
|
version: '0.5'
|
|
249
|
+
- - ">="
|
|
250
|
+
- !ruby/object:Gem::Version
|
|
251
|
+
version: 0.5.2
|
|
158
252
|
type: :development
|
|
159
253
|
prerelease: false
|
|
160
254
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -162,48 +256,77 @@ dependencies:
|
|
|
162
256
|
- - "~>"
|
|
163
257
|
- !ruby/object:Gem::Version
|
|
164
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
|
|
270
|
+
prerelease: false
|
|
271
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
272
|
+
requirements:
|
|
273
|
+
- - "~>"
|
|
274
|
+
- !ruby/object:Gem::Version
|
|
275
|
+
version: '3.12'
|
|
165
276
|
- !ruby/object:Gem::Dependency
|
|
166
|
-
name:
|
|
277
|
+
name: rspec-block_is_expected
|
|
167
278
|
requirement: !ruby/object:Gem::Requirement
|
|
168
279
|
requirements:
|
|
169
280
|
- - "~>"
|
|
170
281
|
- !ruby/object:Gem::Version
|
|
171
|
-
version: '
|
|
282
|
+
version: '1.0'
|
|
283
|
+
- - ">="
|
|
284
|
+
- !ruby/object:Gem::Version
|
|
285
|
+
version: 1.0.5
|
|
172
286
|
type: :development
|
|
173
287
|
prerelease: false
|
|
174
288
|
version_requirements: !ruby/object:Gem::Requirement
|
|
175
289
|
requirements:
|
|
176
290
|
- - "~>"
|
|
177
291
|
- !ruby/object:Gem::Version
|
|
178
|
-
version: '
|
|
292
|
+
version: '1.0'
|
|
293
|
+
- - ">="
|
|
294
|
+
- !ruby/object:Gem::Version
|
|
295
|
+
version: 1.0.5
|
|
179
296
|
- !ruby/object:Gem::Dependency
|
|
180
|
-
name:
|
|
297
|
+
name: rspec_junit_formatter
|
|
181
298
|
requirement: !ruby/object:Gem::Requirement
|
|
182
299
|
requirements:
|
|
183
300
|
- - "~>"
|
|
184
301
|
- !ruby/object:Gem::Version
|
|
185
|
-
version: '0.
|
|
302
|
+
version: '0.6'
|
|
186
303
|
type: :development
|
|
187
304
|
prerelease: false
|
|
188
305
|
version_requirements: !ruby/object:Gem::Requirement
|
|
189
306
|
requirements:
|
|
190
307
|
- - "~>"
|
|
191
308
|
- !ruby/object:Gem::Version
|
|
192
|
-
version: '0.
|
|
309
|
+
version: '0.6'
|
|
193
310
|
- !ruby/object:Gem::Dependency
|
|
194
|
-
name:
|
|
311
|
+
name: rspec-stubbed_env
|
|
195
312
|
requirement: !ruby/object:Gem::Requirement
|
|
196
313
|
requirements:
|
|
197
314
|
- - "~>"
|
|
198
315
|
- !ruby/object:Gem::Version
|
|
199
|
-
version: '1.
|
|
316
|
+
version: '1.0'
|
|
317
|
+
- - ">="
|
|
318
|
+
- !ruby/object:Gem::Version
|
|
319
|
+
version: 1.0.4
|
|
200
320
|
type: :development
|
|
201
321
|
prerelease: false
|
|
202
322
|
version_requirements: !ruby/object:Gem::Requirement
|
|
203
323
|
requirements:
|
|
204
324
|
- - "~>"
|
|
205
325
|
- !ruby/object:Gem::Version
|
|
206
|
-
version: '1.
|
|
326
|
+
version: '1.0'
|
|
327
|
+
- - ">="
|
|
328
|
+
- !ruby/object:Gem::Version
|
|
329
|
+
version: 1.0.4
|
|
207
330
|
description: Configure RuboCop + a bevy of friends to gradually lint Ruby 1.9 code
|
|
208
331
|
email:
|
|
209
332
|
- peter.boling@gmail.com
|
|
@@ -239,14 +362,13 @@ licenses:
|
|
|
239
362
|
- MIT
|
|
240
363
|
metadata:
|
|
241
364
|
homepage_uri: https://github.com/rubocop-lts/rubocop-ruby1_9
|
|
242
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/
|
|
243
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/
|
|
365
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v3.0.0
|
|
366
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v3.0.0/CHANGELOG.md
|
|
244
367
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/issues
|
|
245
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/
|
|
368
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/3.0.0
|
|
246
369
|
funding_uri: https://liberapay.com/pboling
|
|
247
370
|
wiki_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/wiki
|
|
248
371
|
rubygems_mfa_required: 'true'
|
|
249
|
-
post_install_message:
|
|
250
372
|
rdoc_options: []
|
|
251
373
|
require_paths:
|
|
252
374
|
- lib
|
|
@@ -261,8 +383,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
261
383
|
- !ruby/object:Gem::Version
|
|
262
384
|
version: '0'
|
|
263
385
|
requirements: []
|
|
264
|
-
rubygems_version:
|
|
265
|
-
signing_key:
|
|
386
|
+
rubygems_version: 4.0.11
|
|
266
387
|
specification_version: 4
|
|
267
|
-
summary: 'Rules for Rubies: Rubocop + Standard + Betterlint +
|
|
388
|
+
summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Gradual'
|
|
268
389
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|