standard-rubocop-lts 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +25 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/CONTRIBUTING.md +38 -0
- data/LICENSE.txt +21 -0
- data/README.md +369 -0
- data/SECURITY.md +13 -0
- data/config/base.yml +20 -0
- data/config/ruby-1.8.yml +41 -0
- data/config/ruby-1.9.yml +30 -0
- data/config/ruby-2.0.yml +5 -0
- data/config/ruby-2.1.yml +5 -0
- data/config/ruby-2.2.yml +21 -0
- data/config/ruby-2.3.yml +5 -0
- data/config/ruby-2.4.yml +5 -0
- data/config/ruby-2.5.yml +5 -0
- data/config/ruby-2.6.yml +5 -0
- data/config/ruby-2.7.yml +5 -0
- data/config/ruby-3.0.yml +5 -0
- data/config/ruby-3.1.yml +5 -0
- data/config/ruby-3.2.yml +6 -0
- data/config/ruby-3.3.yml +6 -0
- data/lib/standard/rubocop/lts/version.rb +9 -0
- data/lib/standard/rubocop/lts.rb +12 -0
- data/sig/standard/rubocop/lts.rbs +8 -0
- metadata +240 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c216571dc87ae57045429e199fbc53cdfed4ff844712aa459daf89d6b3d49609
|
4
|
+
data.tar.gz: ec29e2040c0d049d0c6761705c3d6681d0afb48fb4990c4638e00186016e55b1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e5d7cf1a248a1995136a776a9ad9baa63786f13adbb7e5e0e8cd16178b22533d0f8561a4b6869d05a2bd8da010d5d046a83240615811604683551973dfbdc295
|
7
|
+
data.tar.gz: 447d2e95f313d53b44e8de60421138137a1ae6c77a32877f55a56fb90b6a38d3761a52fbac5bf052c3f641f2359b03a3d22d285bd28c1f1aa96a02698dfb862f
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [Unreleased]
|
8
|
+
### Added
|
9
|
+
### Changed
|
10
|
+
### Fixed
|
11
|
+
### Removed
|
12
|
+
|
13
|
+
## [1.0.1] 2023-04-16
|
14
|
+
### Fixed
|
15
|
+
- config/*.yml rubocop configs were not shipped with v1.0.0
|
16
|
+
### Changed
|
17
|
+
- Minimum Ruby Version is 2.7
|
18
|
+
|
19
|
+
## [1.0.0] 2023-04-16 (yanked)
|
20
|
+
### Added
|
21
|
+
- Initial release
|
22
|
+
|
23
|
+
[Unreleased]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.0...HEAD
|
24
|
+
[1.0.1]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v1.0.0...v1.0.1
|
25
|
+
[1.0.0]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/0c0f82c0eeda184afb5c2c7a3d6b43c10f2d4c1c...v1.0.0
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
6
|
+
|
7
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
8
|
+
|
9
|
+
## Our Standards
|
10
|
+
|
11
|
+
Examples of behavior that contributes to a positive environment for our community include:
|
12
|
+
|
13
|
+
* Demonstrating empathy and kindness toward other people
|
14
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
15
|
+
* Giving and gracefully accepting constructive feedback
|
16
|
+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
|
17
|
+
* Focusing on what is best not just for us as individuals, but for the overall community
|
18
|
+
|
19
|
+
Examples of unacceptable behavior include:
|
20
|
+
|
21
|
+
* The use of sexualized language or imagery, and sexual attention or
|
22
|
+
advances of any kind
|
23
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
24
|
+
* Public or private harassment
|
25
|
+
* Publishing others' private information, such as a physical or email
|
26
|
+
address, without their explicit permission
|
27
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
28
|
+
professional setting
|
29
|
+
|
30
|
+
## Enforcement Responsibilities
|
31
|
+
|
32
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
33
|
+
|
34
|
+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
|
35
|
+
|
36
|
+
## Scope
|
37
|
+
|
38
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
39
|
+
|
40
|
+
## Enforcement
|
41
|
+
|
42
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at peter.boling@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
|
43
|
+
|
44
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
45
|
+
|
46
|
+
## Enforcement Guidelines
|
47
|
+
|
48
|
+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
|
49
|
+
|
50
|
+
### 1. Correction
|
51
|
+
|
52
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
|
53
|
+
|
54
|
+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
|
55
|
+
|
56
|
+
### 2. Warning
|
57
|
+
|
58
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
59
|
+
|
60
|
+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
|
61
|
+
|
62
|
+
### 3. Temporary Ban
|
63
|
+
|
64
|
+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
|
65
|
+
|
66
|
+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
|
67
|
+
|
68
|
+
### 4. Permanent Ban
|
69
|
+
|
70
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
|
71
|
+
|
72
|
+
**Consequence**: A permanent ban from any sort of public interaction within the community.
|
73
|
+
|
74
|
+
## Attribution
|
75
|
+
|
76
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
|
77
|
+
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
78
|
+
|
79
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
|
80
|
+
|
81
|
+
[homepage]: https://www.contributor-covenant.org
|
82
|
+
|
83
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
84
|
+
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
## Contributing
|
2
|
+
|
3
|
+
Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/rubocop-lts/standard-rubocop-lts][🚎src-main]
|
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].
|
6
|
+
|
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
|
+
and post a message to the [gitter chat][🏘chat].
|
9
|
+
|
10
|
+
## Release
|
11
|
+
|
12
|
+
To release a new version:
|
13
|
+
|
14
|
+
1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check.
|
15
|
+
2. update the version number in `version.rb`
|
16
|
+
3. run `bundle exec rake build:checksum`
|
17
|
+
4. move the built gem to project root
|
18
|
+
5. run `bin/checksum` to create the missing SHA256 checksum
|
19
|
+
6. move the built gem back to `pkg/`
|
20
|
+
7. commit the changes
|
21
|
+
8. run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org][rubygems].
|
22
|
+
|
23
|
+
NOTE: You will need to have a public key in `certs/`, and list your cert in the
|
24
|
+
`gemspec`, in order to sign the new release.
|
25
|
+
See: [RubyGems Security Guide][rubygems-security-guide]
|
26
|
+
|
27
|
+
## Contributors
|
28
|
+
|
29
|
+
See: [https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/graphs/main][🖐contributors]
|
30
|
+
|
31
|
+
[comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
|
32
|
+
|
33
|
+
[conduct]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/blob/main/CODE_OF_CONDUCT.md
|
34
|
+
[🖐contributors]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/graphs/main
|
35
|
+
[🚎src-main]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/tree/main
|
36
|
+
[🏘chat]: https://gitter.im/rubocop-lts/community
|
37
|
+
[rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
38
|
+
[rubygems]: https://rubygems.org
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2023 Peter H. Boling of https://railsbling.com
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,369 @@
|
|
1
|
+
<p align="center">
|
2
|
+
<a href="https://rubocop.org#gh-light-mode-only" target="_blank" rel="noopener">
|
3
|
+
<img height="120px" src="https://github.com/rubocop-lts/standard-rubocop-lts/raw/main/docs/images/logo/rubocop-light.svg?raw=true" alt="SVG RuboCop Logo, Copyright (c) 2014 Dimiter Petrov, CC BY-NC 4.0, see docs/images/logo/README.txt">
|
4
|
+
</a>
|
5
|
+
<a href="https://rubocop.org#gh-dark-mode-only" target="_blank" rel="noopener">
|
6
|
+
<img height="120px" src="https://github.com/rubocop-lts/standard-rubocop-lts/raw/main/docs/images/logo/rubocop-dark.svg?raw=true" alt="SVG RuboCop Logo, Copyright (c) 2014 Dimiter Petrov, CC BY-NC 4.0, see docs/images/logo/README.txt">
|
7
|
+
</a>
|
8
|
+
<a href="https://www.ruby-lang.org/" target="_blank" rel="noopener">
|
9
|
+
<img height="120px" src="https://github.com/rubocop-lts/standard-rubocop-lts/raw/main/docs/images/logo/ruby-logo.svg?raw=true" alt="Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5, see docs/images/logo/README.txt">
|
10
|
+
</a>
|
11
|
+
<a href="https://semver.org/#gh-light-mode-only" target="_blank" rel="noopener">
|
12
|
+
<img height="120px" src="https://github.com/rubocop-lts/standard-rubocop-lts/raw/main/docs/images/logo/semver-light.svg?raw=true" alt="SemVer.org Logo by @maxhaz, see docs/images/logo/README.txt">
|
13
|
+
</a>
|
14
|
+
<a href="https://semver.org/#gh-dark-mode-only" target="_blank" rel="noopener">
|
15
|
+
<img height="120px" src="https://github.com/rubocop-lts/standard-rubocop-lts/raw/main/docs/images/logo/semver-dark.svg?raw=true" alt="SemVer.org Logo by @maxhaz, see docs/images/logo/README.txt">
|
16
|
+
</a>
|
17
|
+
</p>
|
18
|
+
|
19
|
+
---
|
20
|
+
|
21
|
+
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.
|
22
|
+
|
23
|
+
| Gem Name | Version | Downloads | CI | Activity |
|
24
|
+
|-------------------------------|-------------------------------------|----------------------------------------------------------------------|-----------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
|
25
|
+
| [`rubocop-lts`][⛳️lts-gh] | [![Gem Version][⛳️lts-vi]][⛳️lts-g] | [![Total DL][🖇️lts-dti]][⛳️lts-g] [![DL Rank][🏘️lts-rti]][⛳️lts-g] | [![Current][🚎lts-cwfi]][🚎lts-cwf] | [![Open Issues][📗lts-ioi]][📗lts-io] [![Closed Issues][🚀lts-ici]][🚀lts-ic] [![Open PRs][💄lts-poi]][💄lts-po] [![Closed PRs][👽lts-pci]][👽lts-pc] |
|
26
|
+
| [`standard-rubocop-lts`][⛳️ini-gh] | [![Gem Version][⛳️ini-vi]][⛳️ini-g] | [![Total DL][🖇️ini-dti]][⛳️ini-g] [![DL Rank][🏘️ini-rti]][⛳️ini-g] | [![Current][🚎ini-cwfi]][🚎ini-cwf] [![Heads][🖐ini-hwfi]][🖐ini-hwf] | [![Open Issues][📗ini-ioi]][📗ini-io] [![Closed Issues][🚀ini-ici]][🚀ini-ic] [![Open PRs][💄ini-poi]][💄ini-po] [![Closed PRs][👽ini-pci]][👽ini-pc] |
|
27
|
+
|
28
|
+
<!-- columnar badge #s for Project Health table:
|
29
|
+
⛳️
|
30
|
+
🖇
|
31
|
+
🏘
|
32
|
+
🚎
|
33
|
+
🖐
|
34
|
+
🧮
|
35
|
+
📗
|
36
|
+
🚀
|
37
|
+
💄
|
38
|
+
👽
|
39
|
+
-->
|
40
|
+
|
41
|
+
[⛳️lts-vi]: http://img.shields.io/gem/v/rubocop-lts.svg
|
42
|
+
[🖇️lts-dti]: https://img.shields.io/gem/dt/rubocop-lts.svg
|
43
|
+
[🏘️lts-rti]: https://img.shields.io/gem/rt/rubocop-lts.svg
|
44
|
+
[🚎lts-cwf]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/current.yml
|
45
|
+
[🚎lts-cwfi]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/current.yml/badge.svg
|
46
|
+
[🖐lts-hwf]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/heads.yml
|
47
|
+
[🖐lts-hwfi]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/heads.yml/badge.svg
|
48
|
+
[🧮lts-lwf]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/legacy.yml
|
49
|
+
[🧮lts-lwfi]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/legacy.yml/badge.svg
|
50
|
+
[📗lts-io]: https://github.com/rubocop-lts/rubocop-lts/issues
|
51
|
+
[📗lts-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-lts
|
52
|
+
[🚀lts-ic]: https://github.com/rubocop-lts/rubocop-lts/issues?q=is%3Aissue+is%3Aclosed
|
53
|
+
[🚀lts-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-lts
|
54
|
+
[💄lts-po]: https://github.com/rubocop-lts/rubocop-lts/pulls
|
55
|
+
[💄lts-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-lts
|
56
|
+
[👽lts-pc]: https://github.com/rubocop-lts/rubocop-lts/pulls?q=is%3Apr+is%3Aclosed
|
57
|
+
[👽lts-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-lts
|
58
|
+
[⛳️lts-g]: https://rubygems.org/gems/rubocop-lts
|
59
|
+
[⛳️lts-gh]: https://github.com/rubocop-lts/rubocop-lts
|
60
|
+
|
61
|
+
[⛳️ini-vi]: http://img.shields.io/gem/v/standard-rubocop-lts.svg
|
62
|
+
[🖇️ini-dti]: https://img.shields.io/gem/dt/standard-rubocop-lts.svg
|
63
|
+
[🏘️ini-rti]: https://img.shields.io/gem/rt/standard-rubocop-lts.svg
|
64
|
+
[🚎ini-cwf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/current.yml
|
65
|
+
[🚎ini-cwfi]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/current.yml/badge.svg
|
66
|
+
[🖐ini-hwf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/heads.yml
|
67
|
+
[🖐ini-hwfi]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/heads.yml/badge.svg
|
68
|
+
[🧮ini-lwf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/legacy.yml
|
69
|
+
[🧮ini-lwfi]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/legacy.yml/badge.svg
|
70
|
+
[📗ini-io]: https://github.com/rubocop-lts/standard-rubocop-lts/issues
|
71
|
+
[📗ini-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/standard-rubocop-lts
|
72
|
+
[🚀ini-ic]: https://github.com/rubocop-lts/standard-rubocop-lts/issues?q=is%3Aissue+is%3Aclosed
|
73
|
+
[🚀ini-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/standard-rubocop-lts
|
74
|
+
[💄ini-po]: https://github.com/rubocop-lts/standard-rubocop-lts/pulls
|
75
|
+
[💄ini-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/standard-rubocop-lts
|
76
|
+
[👽ini-pc]: https://github.com/rubocop-lts/standard-rubocop-lts/pulls?q=is%3Apr+is%3Aclosed
|
77
|
+
[👽ini-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/standard-rubocop-lts
|
78
|
+
[⛳️ini-g]: https://rubygems.org/gems/standard-rubocop-lts
|
79
|
+
[⛳️ini-gh]: https://github.com/rubocop-lts/standard-rubocop-lts
|
80
|
+
|
81
|
+
# Standard::Rubocop::Lts
|
82
|
+
|
83
|
+
Extended [standard (Standard Ruby)][standardrb] config shims for all your finely-aged rubies,
|
84
|
+
back to version 1.8. Compatible with the `rubocop-lts` [gem family](#a-gem-family).
|
85
|
+
|
86
|
+
Use the rules standard gives you, and then add more,
|
87
|
+
to increase your code's compatibility across multiple versions of Ruby.
|
88
|
+
|
89
|
+
Only reach as far back as you need to go!
|
90
|
+
|
91
|
+
[standardrb]: https://github.com/standardrb/standard
|
92
|
+
|
93
|
+
### 👪 A Gem Family
|
94
|
+
|
95
|
+
The `rubocop-lts` family of gems has a version supporting any version of Ruby you need.
|
96
|
+
They can be used as development dependencies for libraries or applications.
|
97
|
+
|
98
|
+
- [`rubocop-lts`][rlts]
|
99
|
+
- [`standard-rubocop-lts`][stdrlts]
|
100
|
+
- [`rubocop-ruby1_8`][rr18]
|
101
|
+
- [`rubocop-ruby1_9`][rr19]
|
102
|
+
- [`rubocop-ruby2_0`][rr20]
|
103
|
+
- [`rubocop-ruby2_1`][rr21]
|
104
|
+
- [`rubocop-ruby2_2`][rr22]
|
105
|
+
- [`rubocop-ruby2_3`][rr23]
|
106
|
+
- [`rubocop-ruby2_4`][rr24]
|
107
|
+
- [`rubocop-ruby2_5`][rr25]
|
108
|
+
- [`rubocop-ruby2_6`][rr26]
|
109
|
+
- [`rubocop-ruby2_7`][rr27]
|
110
|
+
- [`rubocop-ruby3_0`][rr30]
|
111
|
+
- [`rubocop-ruby3_1`][rr31]
|
112
|
+
- [`rubocop-ruby3_2`][rr32]
|
113
|
+
|
114
|
+
[rlts]: https://github.com/rubocop-lts/rubocop-lts#-how-to-untie-gorgons-knot
|
115
|
+
[stdrlts]: https://github.com/rubocop-lts/standard-rubocop-lts
|
116
|
+
[rr18]: https://gitlab.com/rubocop-lts/standard-rubocop-lts
|
117
|
+
[rr19]: https://gitlab.com/rubocop-lts/rubocop-ruby1_9
|
118
|
+
[rr20]: https://gitlab.com/rubocop-lts/rubocop-ruby2_0
|
119
|
+
[rr21]: https://gitlab.com/rubocop-lts/rubocop-ruby2_1
|
120
|
+
[rr22]: https://gitlab.com/rubocop-lts/rubocop-ruby2_2
|
121
|
+
[rr23]: https://gitlab.com/rubocop-lts/rubocop-ruby2_3
|
122
|
+
[rr24]: https://gitlab.com/rubocop-lts/rubocop-ruby2_4
|
123
|
+
[rr25]: https://gitlab.com/rubocop-lts/rubocop-ruby2_5
|
124
|
+
[rr26]: https://gitlab.com/rubocop-lts/rubocop-ruby2_6
|
125
|
+
[rr27]: https://gitlab.com/rubocop-lts/rubocop-ruby2_7
|
126
|
+
[rr30]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0
|
127
|
+
[rr31]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1
|
128
|
+
[rr32]: https://gitlab.com/rubocop-lts/rubocop-ruby3_2
|
129
|
+
|
130
|
+
## 🗿 Stable
|
131
|
+
|
132
|
+
All releases of this gem are stable releases.
|
133
|
+
We do not release new versions for every release of `rubocop`,
|
134
|
+
as this gem is tied to [standard (Standard Ruby)][standardrb].
|
135
|
+
A typical release cycle for a gem in the `rubocop-lts` family is roughly every six months,
|
136
|
+
though eventually analysis support for an old version of Ruby will be dropped.
|
137
|
+
When that happens releases of the `rubocop-lts` gem for that version of Ruby will (mostly) cease.
|
138
|
+
|
139
|
+
## ✨ Installation
|
140
|
+
|
141
|
+
Install the gem and add to the application's Gemfile by executing:
|
142
|
+
|
143
|
+
$ bundle add standard-rubocop-lts
|
144
|
+
|
145
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
146
|
+
|
147
|
+
$ gem install standard-rubocop-lts
|
148
|
+
|
149
|
+
## 🔧 Basic Usage
|
150
|
+
|
151
|
+
Add to the top of your project's `.rubocop.yml` configuration file:
|
152
|
+
|
153
|
+
```yaml
|
154
|
+
inherit_gem:
|
155
|
+
# Replace {RUBY_MAJOR_VERSION} with the minimum major version of ruby you want to target.
|
156
|
+
# Replace {RUBY_MINOR_VERSION} with the minimum minor version of ruby you want to target.
|
157
|
+
standard-rubocop-lts: config/ruby-{RUBY_MAJOR_VERSION}-{RUBY_MINOR_VERSION}.yml
|
158
|
+
```
|
159
|
+
|
160
|
+
Among other settings specific to your chosen minimum version of ruby, the above results in the following config:
|
161
|
+
|
162
|
+
```yaml
|
163
|
+
# We want Exclude directives from different
|
164
|
+
# config files to get merged, not overwritten
|
165
|
+
inherit_mode:
|
166
|
+
merge:
|
167
|
+
- Exclude
|
168
|
+
|
169
|
+
require:
|
170
|
+
- rubocop-performance
|
171
|
+
- standard
|
172
|
+
- standard-performance
|
173
|
+
- standard-custom
|
174
|
+
|
175
|
+
inherit_gem:
|
176
|
+
rubocop-performance: config/default.yml
|
177
|
+
standard: config/base.yml
|
178
|
+
standard-performance: config/base.yml
|
179
|
+
standard-custom: config/base.yml
|
180
|
+
|
181
|
+
AllCops:
|
182
|
+
NewCops: enable
|
183
|
+
```
|
184
|
+
|
185
|
+
## 💻 Development
|
186
|
+
|
187
|
+
After checking out the repo, run `bin/setup` to install dependencies.
|
188
|
+
Then, run `rake spec` to run the tests w/ coverage,
|
189
|
+
or `bin/rake` to run tests w/ coverage, and linting.
|
190
|
+
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
191
|
+
|
192
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
193
|
+
|
194
|
+
### 🚀 Release Instructions
|
195
|
+
|
196
|
+
See [CONTRIBUTING.md][contributing].
|
197
|
+
|
198
|
+
## ⚡️ Contributing
|
199
|
+
|
200
|
+
See [CONTRIBUTING.md][contributing]
|
201
|
+
|
202
|
+
## 🌈 Contributors
|
203
|
+
|
204
|
+
[![Contributors](https://contrib.rocks/image?repo=rubocop-lts/standard-rubocop-lts)]("https://github.com/rubocop-lts/standard-rubocop-lts/graphs/contributors")
|
205
|
+
|
206
|
+
Made with [contributors-img](https://contrib.rocks).
|
207
|
+
|
208
|
+
## License
|
209
|
+
|
210
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
211
|
+
|
212
|
+
## 📄 License
|
213
|
+
|
214
|
+
The gem is available as open source under the terms of
|
215
|
+
the [MIT License][license] [![License: MIT][license-img]][license-ref].
|
216
|
+
See [LICENSE.txt][license] for the official [Copyright Notice][copyright-notice-explainer].
|
217
|
+
|
218
|
+
<details>
|
219
|
+
<summary>Project Logos (standard-rubocop-lts)</summary>
|
220
|
+
|
221
|
+
See [docs/images/logo/README.txt][project-logos]
|
222
|
+
</details>
|
223
|
+
|
224
|
+
<details>
|
225
|
+
<summary>Organization Logo (rubocop-lts)</summary>
|
226
|
+
|
227
|
+
Author: [Yusuf Evli][org-logo-author]
|
228
|
+
Source: [Unsplash][org-logo-source]
|
229
|
+
License: [Unsplash License][org-logo-license]
|
230
|
+
</details>
|
231
|
+
|
232
|
+
[project-logos]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/docs/images/logo/README.txt
|
233
|
+
[org-logo-author]: https://unsplash.com/@yusufevli
|
234
|
+
[org-logo-source]: https://unsplash.com/photos/yaSLNLtKRIU
|
235
|
+
[org-logo-license]: https://unsplash.com/license
|
236
|
+
|
237
|
+
### © Copyright
|
238
|
+
|
239
|
+
* Copyright (c) 2022 - 2023 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
240
|
+
|
241
|
+
## 🤝 Code of Conduct
|
242
|
+
|
243
|
+
Everyone interacting in this project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/CODE_OF_CONDUCT.md).
|
244
|
+
|
245
|
+
## 📌 Versioning
|
246
|
+
|
247
|
+
This library aims to adhere to [Semantic Versioning 2.0.0][semver]. Violations of this scheme should be reported as
|
248
|
+
bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, a new version should be
|
249
|
+
immediately released that restores compatibility. Breaking changes to the public API will only be introduced with new
|
250
|
+
major versions.
|
251
|
+
|
252
|
+
As a result of this policy, you can (and should) specify a dependency on this gem using
|
253
|
+
the [Pessimistic Version Constraint][pvc] with two digits of precision.
|
254
|
+
|
255
|
+
For example:
|
256
|
+
|
257
|
+
```ruby
|
258
|
+
spec.add_dependency "standard-rubocop-lts", "~> 1.0"
|
259
|
+
```
|
260
|
+
|
261
|
+
[aboutme]: https://about.me/peter.boling
|
262
|
+
[actions]: https://github.com/rubocop-lts/standard-rubocop-lts/actions
|
263
|
+
[angelme]: https://angel.co/peter-boling
|
264
|
+
[blogpage]: http://www.railsbling.com/tags/standard-rubocop-lts/
|
265
|
+
[codecov_coverage]: https://codecov.io/gh/rubocop-lts/standard-rubocop-lts
|
266
|
+
[code_triage]: https://www.codetriage.com/rubocop-lts/standard-rubocop-lts
|
267
|
+
[chat]: https://gitter.im/rubocop-lts/standard-rubocop-lts?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
268
|
+
[climate_coverage]: https://codeclimate.com/github/rubocop-lts/standard-rubocop-lts/test_coverage
|
269
|
+
[climate_maintainability]: https://codeclimate.com/github/rubocop-lts/standard-rubocop-lts/maintainability
|
270
|
+
[copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
271
|
+
[conduct]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/CODE_OF_CONDUCT.md
|
272
|
+
[contributing]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/CONTRIBUTING.md
|
273
|
+
[devto]: https://dev.to/galtzo
|
274
|
+
[documentation]: https://rubydoc.info/github/rubocop-lts/standard-rubocop-lts/main
|
275
|
+
[followme]: https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow
|
276
|
+
[gh_discussions]: https://github.com/rubocop-lts/standard-rubocop-lts/discussions
|
277
|
+
[gh_sponsors]: https://github.com/sponsors/pboling
|
278
|
+
[issues]: https://github.com/rubocop-lts/standard-rubocop-lts/issues
|
279
|
+
[liberapay_donate]: https://liberapay.com/pboling/donate
|
280
|
+
[license]: LICENSE.txt
|
281
|
+
[license-ref]: https://opensource.org/licenses/MIT
|
282
|
+
[license-img]: https://img.shields.io/badge/License-MIT-green.svg
|
283
|
+
[peterboling]: http://www.peterboling.com
|
284
|
+
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
285
|
+
[railsbling]: http://www.railsbling.com
|
286
|
+
[rubygems]: https://rubygems.org/gems/standard-rubocop-lts
|
287
|
+
[security]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/SECURITY.md
|
288
|
+
[semver]: http://semver.org/
|
289
|
+
[source]: https://github.com/rubocop-lts/standard-rubocop-lts/
|
290
|
+
[tweetme]: http://twitter.com/galtzo
|
291
|
+
## 📄 License
|
292
|
+
|
293
|
+
The gem is available as open source under the terms of
|
294
|
+
the [MIT License][license] [![License: MIT][license-img]][license-ref].
|
295
|
+
See [LICENSE.txt][license] for the official [Copyright Notice][copyright-notice-explainer].
|
296
|
+
|
297
|
+
<details>
|
298
|
+
<summary>Project Logos (standard-rubocop-lts)</summary>
|
299
|
+
|
300
|
+
See [docs/images/logo/README.txt][project-logos]
|
301
|
+
</details>
|
302
|
+
|
303
|
+
<details>
|
304
|
+
<summary>Organization Logo (rubocop-lts)</summary>
|
305
|
+
|
306
|
+
Author: [Yusuf Evli][org-logo-author]
|
307
|
+
Source: [Unsplash][org-logo-source]
|
308
|
+
License: [Unsplash License][org-logo-license]
|
309
|
+
</details>
|
310
|
+
|
311
|
+
[project-logos]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/docs/images/logo/README.txt
|
312
|
+
[org-logo-author]: https://unsplash.com/@yusufevli
|
313
|
+
[org-logo-source]: https://unsplash.com/photos/yaSLNLtKRIU
|
314
|
+
[org-logo-license]: https://unsplash.com/license
|
315
|
+
|
316
|
+
### © Copyright
|
317
|
+
|
318
|
+
* Copyright (c) 2023 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
319
|
+
|
320
|
+
## 🤝 Code of Conduct
|
321
|
+
|
322
|
+
Everyone interacting in this project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/CODE_OF_CONDUCT.md).
|
323
|
+
|
324
|
+
## 📌 Versioning
|
325
|
+
|
326
|
+
This library aims to adhere to [Semantic Versioning 2.0.0][semver]. Violations of this scheme should be reported as
|
327
|
+
bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, a new version should be
|
328
|
+
immediately released that restores compatibility. Breaking changes to the public API will only be introduced with new
|
329
|
+
major versions.
|
330
|
+
|
331
|
+
As a result of this policy, you can (and should) specify a dependency on this gem using
|
332
|
+
the [Pessimistic Version Constraint][pvc] with two digits of precision.
|
333
|
+
|
334
|
+
For example:
|
335
|
+
|
336
|
+
```ruby
|
337
|
+
spec.add_dependency "standard-rubocop-lts", "~> 1.0"
|
338
|
+
```
|
339
|
+
|
340
|
+
[aboutme]: https://about.me/peter.boling
|
341
|
+
[actions]: https://github.com/rubocop-lts/standard-rubocop-lts/actions
|
342
|
+
[angelme]: https://angel.co/peter-boling
|
343
|
+
[blogpage]: http://www.railsbling.com/tags/standard-rubocop-lts/
|
344
|
+
[codecov_coverage]: https://codecov.io/gh/rubocop-lts/standard-rubocop-lts
|
345
|
+
[code_triage]: https://www.codetriage.com/rubocop-lts/standard-rubocop-lts
|
346
|
+
[chat]: https://gitter.im/rubocop-lts/standard-rubocop-lts?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
347
|
+
[climate_coverage]: https://codeclimate.com/github/rubocop-lts/standard-rubocop-lts/test_coverage
|
348
|
+
[climate_maintainability]: https://codeclimate.com/github/rubocop-lts/standard-rubocop-lts/maintainability
|
349
|
+
[copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
350
|
+
[conduct]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/CODE_OF_CONDUCT.md
|
351
|
+
[contributing]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/CONTRIBUTING.md
|
352
|
+
[devto]: https://dev.to/galtzo
|
353
|
+
[documentation]: https://rubydoc.info/github/rubocop-lts/standard-rubocop-lts/main
|
354
|
+
[followme]: https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow
|
355
|
+
[gh_discussions]: https://github.com/rubocop-lts/standard-rubocop-lts/discussions
|
356
|
+
[gh_sponsors]: https://github.com/sponsors/pboling
|
357
|
+
[issues]: https://github.com/rubocop-lts/standard-rubocop-lts/issues
|
358
|
+
[liberapay_donate]: https://liberapay.com/pboling/donate
|
359
|
+
[license]: LICENSE.txt
|
360
|
+
[license-ref]: https://opensource.org/licenses/MIT
|
361
|
+
[license-img]: https://img.shields.io/badge/License-MIT-green.svg
|
362
|
+
[peterboling]: http://www.peterboling.com
|
363
|
+
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
364
|
+
[railsbling]: http://www.railsbling.com
|
365
|
+
[rubygems]: https://rubygems.org/gems/standard-rubocop-lts
|
366
|
+
[security]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/SECURITY.md
|
367
|
+
[semver]: http://semver.org/
|
368
|
+
[source]: https://github.com/rubocop-lts/standard-rubocop-lts/
|
369
|
+
[tweetme]: http://twitter.com/galtzo
|
data/SECURITY.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Security Policy
|
2
|
+
|
3
|
+
## Supported Versions
|
4
|
+
|
5
|
+
| Version | Supported |
|
6
|
+
|---------|-----------|
|
7
|
+
| 1.x | ✅ |
|
8
|
+
|
9
|
+
## Reporting a Vulnerability
|
10
|
+
|
11
|
+
Peter Boling is the primary maintainer of this gem. Please find a way
|
12
|
+
to [contact him directly](https://railsbling.com/contact) to report the issue. Include as much relevant information as
|
13
|
+
possible.
|
data/config/base.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# We want Exclude directives from different
|
2
|
+
# config files to get merged, not overwritten
|
3
|
+
inherit_mode:
|
4
|
+
merge:
|
5
|
+
- Exclude
|
6
|
+
|
7
|
+
require:
|
8
|
+
- rubocop-performance
|
9
|
+
- standard
|
10
|
+
- standard-performance
|
11
|
+
- standard-custom
|
12
|
+
|
13
|
+
inherit_gem:
|
14
|
+
rubocop-performance: config/default.yml
|
15
|
+
standard: config/base.yml
|
16
|
+
standard-performance: config/base.yml
|
17
|
+
standard-custom: config/base.yml
|
18
|
+
|
19
|
+
AllCops:
|
20
|
+
NewCops: enable
|
data/config/ruby-1.8.yml
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
inherit_from: ./ruby-1.9.yml
|
2
|
+
|
3
|
+
# NOTE: The lowest TargetRubyVersion that can be declared is 2.0
|
4
|
+
# AllCops:
|
5
|
+
# TargetRubyVersion: 1.8
|
6
|
+
|
7
|
+
# Load basic rules for this version of Ruby from standard.
|
8
|
+
inherit_gem:
|
9
|
+
standard: config/ruby-1.8.yml
|
10
|
+
|
11
|
+
##############################################################################
|
12
|
+
# Additional rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
13
|
+
# These are not in standard, and are the primary reason this gem exists. #
|
14
|
+
##############################################################################
|
15
|
+
|
16
|
+
# Ruby 1.8.7 needs the . on chain of method calls at the end of a line
|
17
|
+
Layout/DotPosition:
|
18
|
+
EnforcedStyle: trailing
|
19
|
+
|
20
|
+
# Disabled in standard's base.yml. Keeping here in case it is removed from base.
|
21
|
+
Style/Documentation:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
# Set in standard's base.yml. Keeping here in case it is changed in base.
|
25
|
+
Style/PercentLiteralDelimiters:
|
26
|
+
Enabled: true
|
27
|
+
PreferredDelimiters:
|
28
|
+
default: ()
|
29
|
+
'%i': '[]'
|
30
|
+
'%I': '[]'
|
31
|
+
'%r': '{}'
|
32
|
+
'%w': '[]'
|
33
|
+
'%W': '[]'
|
34
|
+
|
35
|
+
# Missing from standard's base.yml. Works in concert with Style/PercentLiteralDelimiters
|
36
|
+
Style/SymbolArray:
|
37
|
+
EnforcedStyle: brackets
|
38
|
+
|
39
|
+
# Missing from standard's base.yml. Works in concert with Style/PercentLiteralDelimiters
|
40
|
+
Style/WordArray:
|
41
|
+
EnforcedStyle: brackets
|
data/config/ruby-1.9.yml
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
inherit_from: ./ruby-2.0.yml
|
2
|
+
|
3
|
+
# NOTE: The lowest TargetRubyVersion that can be declared is 2.0
|
4
|
+
# AllCops:
|
5
|
+
# TargetRubyVersion: 1.9
|
6
|
+
|
7
|
+
# Load basic rules for this version of Ruby from standard.
|
8
|
+
inherit_gem:
|
9
|
+
standard: config/ruby-1.9.yml
|
10
|
+
|
11
|
+
##############################################################################
|
12
|
+
# Additional rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
13
|
+
# These are not in standard, and are the primary reason this gem exists. #
|
14
|
+
##############################################################################
|
15
|
+
|
16
|
+
# Disabled in standard's base.yml, which allows magic encoding comments to live on.
|
17
|
+
# Reproducing here, in case Standard Ruby drops the config.
|
18
|
+
#
|
19
|
+
Style/Encoding:
|
20
|
+
Enabled: false
|
21
|
+
# The encoding comments can be removed once a project drops Ruby 1.9 support.
|
22
|
+
# Whole file UTF-8 Encoding is default in Ruby 2+, so the Encoding comment is usually not needed there.
|
23
|
+
# See:
|
24
|
+
# * https://www.rubydoc.info/gems/rubocop/0.49.0/RuboCop/Cop/Style/Encoding
|
25
|
+
# * https://rubydoc.info/gems/rubocop/RuboCop/Cop/Style/Encoding
|
26
|
+
# Unfortunately in latest RuboCop there is only a "never" style enforced (i.e. encodings are always bad).
|
27
|
+
# TODO: Consider bringing back this rule as a new Cop (extracted from old RuboCop)
|
28
|
+
#Style/Encoding:
|
29
|
+
# Enabled: true
|
30
|
+
# EnforcedStyle: always
|
data/config/ruby-2.0.yml
ADDED
data/config/ruby-2.1.yml
ADDED
data/config/ruby-2.2.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
inherit_from: ./ruby-2.3.yml
|
2
|
+
|
3
|
+
require:
|
4
|
+
- rubocop-performance
|
5
|
+
- standard
|
6
|
+
- standard-performance
|
7
|
+
- standard-custom
|
8
|
+
|
9
|
+
# Load basic rules for this version of Ruby from standard.
|
10
|
+
inherit_gem:
|
11
|
+
# Duplicated from config/base.yml because of the yaml hierarchy.
|
12
|
+
rubocop-performance: config/default.yml
|
13
|
+
# Ruby version-specific overrides for specific additional gems.
|
14
|
+
standard: config/ruby-2.2.yml
|
15
|
+
standard-custom: config/ruby-2.2.yml
|
16
|
+
standard-performance: config/ruby-2.2.yml
|
17
|
+
|
18
|
+
# Disabled in standard's base.yml. Keeping here in case removed from base.
|
19
|
+
# As of Ruby 3, string literals are frozen in all files.
|
20
|
+
Style/FrozenStringLiteralComment:
|
21
|
+
Enabled: false
|
data/config/ruby-2.3.yml
ADDED
data/config/ruby-2.4.yml
ADDED
data/config/ruby-2.5.yml
ADDED
data/config/ruby-2.6.yml
ADDED
data/config/ruby-2.7.yml
ADDED
data/config/ruby-3.0.yml
ADDED
data/config/ruby-3.1.yml
ADDED
data/config/ruby-3.2.yml
ADDED
data/config/ruby-3.3.yml
ADDED
metadata
ADDED
@@ -0,0 +1,240 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: standard-rubocop-lts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Peter Boling
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-05-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: standard
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.28'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.28'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: standard-performance
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.0'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2'
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.0'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '2'
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: standard-custom
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '1.0'
|
60
|
+
- - "<"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '2'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '1.0'
|
70
|
+
- - "<"
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '2'
|
73
|
+
- !ruby/object:Gem::Dependency
|
74
|
+
name: rubocop-gradual
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - "~>"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0.3'
|
80
|
+
type: :development
|
81
|
+
prerelease: false
|
82
|
+
version_requirements: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - "~>"
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0.3'
|
87
|
+
- !ruby/object:Gem::Dependency
|
88
|
+
name: rubocop-md
|
89
|
+
requirement: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - "~>"
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '1.2'
|
94
|
+
type: :development
|
95
|
+
prerelease: false
|
96
|
+
version_requirements: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - "~>"
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '1.2'
|
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-rake
|
117
|
+
requirement: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - "~>"
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0.6'
|
122
|
+
type: :development
|
123
|
+
prerelease: false
|
124
|
+
version_requirements: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - "~>"
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0.6'
|
129
|
+
- !ruby/object:Gem::Dependency
|
130
|
+
name: rubocop-rspec
|
131
|
+
requirement: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - "~>"
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '2.22'
|
136
|
+
type: :development
|
137
|
+
prerelease: false
|
138
|
+
version_requirements: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - "~>"
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '2.22'
|
143
|
+
- !ruby/object:Gem::Dependency
|
144
|
+
name: rubocop-thread_safety
|
145
|
+
requirement: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
147
|
+
- - "~>"
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0.5'
|
150
|
+
type: :development
|
151
|
+
prerelease: false
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
requirements:
|
154
|
+
- - "~>"
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: '0.5'
|
157
|
+
- !ruby/object:Gem::Dependency
|
158
|
+
name: standard-rubocop-lts
|
159
|
+
requirement: !ruby/object:Gem::Requirement
|
160
|
+
requirements:
|
161
|
+
- - "~>"
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: '1.0'
|
164
|
+
- - "<"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '2'
|
167
|
+
type: :development
|
168
|
+
prerelease: false
|
169
|
+
version_requirements: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '1.0'
|
174
|
+
- - "<"
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: '2'
|
177
|
+
description: Extended Standard Ruby Configs for Finely Aged Rubies; Compatible with
|
178
|
+
rubocop-lts
|
179
|
+
email:
|
180
|
+
- peter.boling@gmail.com
|
181
|
+
executables: []
|
182
|
+
extensions: []
|
183
|
+
extra_rdoc_files: []
|
184
|
+
files:
|
185
|
+
- CHANGELOG.md
|
186
|
+
- CODE_OF_CONDUCT.md
|
187
|
+
- CONTRIBUTING.md
|
188
|
+
- LICENSE.txt
|
189
|
+
- README.md
|
190
|
+
- SECURITY.md
|
191
|
+
- config/base.yml
|
192
|
+
- config/ruby-1.8.yml
|
193
|
+
- config/ruby-1.9.yml
|
194
|
+
- config/ruby-2.0.yml
|
195
|
+
- config/ruby-2.1.yml
|
196
|
+
- config/ruby-2.2.yml
|
197
|
+
- config/ruby-2.3.yml
|
198
|
+
- config/ruby-2.4.yml
|
199
|
+
- config/ruby-2.5.yml
|
200
|
+
- config/ruby-2.6.yml
|
201
|
+
- config/ruby-2.7.yml
|
202
|
+
- config/ruby-3.0.yml
|
203
|
+
- config/ruby-3.1.yml
|
204
|
+
- config/ruby-3.2.yml
|
205
|
+
- config/ruby-3.3.yml
|
206
|
+
- lib/standard/rubocop/lts.rb
|
207
|
+
- lib/standard/rubocop/lts/version.rb
|
208
|
+
- sig/standard/rubocop/lts.rbs
|
209
|
+
homepage: https://rubocop-lts.gitlab.io/
|
210
|
+
licenses:
|
211
|
+
- MIT
|
212
|
+
metadata:
|
213
|
+
homepage_uri: https://rubocop-lts.gitlab.io/
|
214
|
+
source_code_uri: https://rubocop-lts.gitlab.io//tree/v1.0.1
|
215
|
+
changelog_uri: https://rubocop-lts.gitlab.io//blob/v1.0.1/CHANGELOG.md
|
216
|
+
bug_tracker_uri: https://rubocop-lts.gitlab.io//issues
|
217
|
+
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/1.0.1
|
218
|
+
funding_uri: https://liberapay.com/pboling
|
219
|
+
wiki_uri: https://rubocop-lts.gitlab.io//wiki
|
220
|
+
rubygems_mfa_required: 'true'
|
221
|
+
post_install_message:
|
222
|
+
rdoc_options: []
|
223
|
+
require_paths:
|
224
|
+
- lib
|
225
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - ">="
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: 2.7.0
|
230
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
231
|
+
requirements:
|
232
|
+
- - ">="
|
233
|
+
- !ruby/object:Gem::Version
|
234
|
+
version: '0'
|
235
|
+
requirements: []
|
236
|
+
rubygems_version: 3.4.13
|
237
|
+
signing_key:
|
238
|
+
specification_version: 4
|
239
|
+
summary: Extended Standard Ruby Configs for Finely Aged Rubies
|
240
|
+
test_files: []
|