rubocop-lts 2.1.1 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -36
- data/CONTRIBUTING.md +12 -26
- data/README.md +337 -198
- data/SECURITY.md +13 -31
- data/lib/rubocop/lts/version.rb +1 -3
- data/lib/rubocop/lts.rb +1 -12
- data/sig/rubocop/lts.rbs +2 -4
- data/spec/config/rspec/rspec_core.rb +14 -0
- data/spec/rubocop/lts_spec.rb +8 -0
- data/spec/spec_helper.rb +8 -0
- metadata +31 -148
- checksums.yaml.gz.sig +0 -0
- data/config/base.yml +0 -2
- data/config/rails.yml +0 -4
- data/config/rails_rspec.yml +0 -4
- data/config/rspec.yml +0 -4
- data/config/ruby.yml +0 -4
- data/config/ruby_rspec.yml +0 -4
- data/config/rubygem.yml +0 -4
- data/config/rubygem_rspec.yml +0 -4
- data/rubocop-lts.yml +0 -15
- data.tar.gz.sig +0 -1
- 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: 6267933ed70ced700270b5690d8d2042a0a5773ad9b014ad04d4661801af1365
|
4
|
+
data.tar.gz: b45171da57d07c4bc87f05d2e45e1ddc5e697b1ae2bd5134bb771ea26684edd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0285b68f9f647a682e8bd34e666bb31a15374ab1a5422db9c5a743d299c807b91732519df25b5a1eac3c2473458aa2db5e9d9c3a14330d62d3749a91f6bb902a'
|
7
|
+
data.tar.gz: cc2b087c81a5a7008e09c81614f65e1eac2facd095902687e536098c47ac8c1d12055f991b94e4188734922f220f6af84be7c97c6c150867ac2cd314a4be70bb
|
data/CHANGELOG.md
CHANGED
@@ -6,39 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
|
-
### Changed
|
10
|
-
### Fixed
|
11
|
-
### Removed
|
12
|
-
|
13
|
-
## [2.1.1] - 2023-05-30
|
14
|
-
### Added
|
15
|
-
- `config/base.yml` for all shared configs
|
16
|
-
- `Rubocop::Lts.install_tasks` to roll-up rake tasks from dependencies (e.g. rubocop_gradual)
|
17
9
|
|
18
|
-
## [2.1.0] - 2023-05-20
|
19
10
|
### Changed
|
20
|
-
- Broadened scope of gem, updated `rubocop-ruby*_*` which configures many linting tools via `standard-rubocop-lts`
|
21
|
-
### Removed
|
22
|
-
- Install support for Ruby < 2.7 (minimum is now 2.7, analysis of older Ruby still supported)
|
23
|
-
- rubocop-lts1_8.yml - Use the new dedicated gem `rubocop-ruby1_8` instead
|
24
|
-
|
25
|
-
## [2.0.5] - 2022-06-08
|
26
|
-
### Added
|
27
|
-
- Improve, and dry up documentation
|
28
11
|
|
29
|
-
## [2.0.4] - 2022-06-08
|
30
12
|
### Fixed
|
31
|
-
- Allow install up to Ruby < 4, which allows running against current Ruby HEAD @ 3.2-dev
|
32
13
|
|
33
|
-
|
34
|
-
### Fixed
|
35
|
-
- Make rubocop config files load ruby specific config from relevant `rubocop-ruby*_*` gem
|
14
|
+
### Removed
|
36
15
|
|
37
|
-
## [
|
38
|
-
###
|
39
|
-
-
|
40
|
-
- rubocop-lts.yml
|
41
|
-
- rubocop-lts1_8.yml
|
16
|
+
## [3.0.0] - 2022-05-22
|
17
|
+
### Added
|
18
|
+
- Initial odd release supporting Ruby ~> 2.0
|
42
19
|
|
43
20
|
## [2.0.1] - 2022-05-22
|
44
21
|
### Fixed
|
@@ -48,13 +25,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
48
25
|
### Added
|
49
26
|
- Initial even release supporting Ruby >= 1.9
|
50
27
|
|
51
|
-
[
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
[
|
56
|
-
|
57
|
-
|
58
|
-
[2.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.0...v2.0.1
|
59
|
-
[2.0.0]: https://gitlab.com/rubocop-lts/rubocop-lts/-/tags/v2.0.0
|
28
|
+
## [1.0.1] - 2022-05-22
|
29
|
+
### Fixed
|
30
|
+
- Documentation typos & gemspec URLs
|
31
|
+
|
32
|
+
## [1.0.0] - 2022-05-22
|
33
|
+
### Added
|
34
|
+
- Initial odd release supporting Ruby ~> 1.9
|
60
35
|
|
36
|
+
[Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.0...HEAD
|
37
|
+
[3.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.1...v3.0.0
|
38
|
+
[2.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.0...v2.0.1
|
39
|
+
[2.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.1...v2.0.0
|
40
|
+
[1.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.0...v1.0.1
|
41
|
+
[1.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/f0fcf8e7dbb4d884a01c7191e7f26ef8bf3b22af...v1.0.0
|
data/CONTRIBUTING.md
CHANGED
@@ -1,39 +1,25 @@
|
|
1
1
|
## Contributing
|
2
2
|
|
3
|
-
Bug reports and pull requests are welcome on
|
3
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/rubocop-lts/rubocop-lts][source]
|
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][
|
5
|
+
the [code of conduct][conduct].
|
6
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].
|
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!
|
9
8
|
|
10
|
-
##
|
9
|
+
## Contributors
|
11
10
|
|
12
|
-
|
11
|
+
[![Contributors](https://contrib.rocks/image?repo=rubocop-lts/rubocop-lts)][contributors]
|
13
12
|
|
14
|
-
|
15
|
-
2. update the version number in `version.rb`
|
16
|
-
3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`.
|
17
|
-
4. run `bundle exec rake build:checksum`
|
18
|
-
5. move the built gem to project root
|
19
|
-
6. run `bin/checksum` to create the missing SHA256 checksum
|
20
|
-
7. move the built gem back to `pkg/`
|
21
|
-
8. commit the changes
|
22
|
-
9. 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].
|
13
|
+
Made with [contributors-img][contrib-rocks].
|
23
14
|
|
24
|
-
|
25
|
-
`gemspec`, in order to sign the new release.
|
26
|
-
See: [RubyGems Security Guide][rubygems-security-guide]
|
15
|
+
[comment]: <> (Following links are used by README, CONTRIBUTING)
|
27
16
|
|
28
|
-
|
17
|
+
[conduct]: https://github.com/rubocop-lts/rubocop-lts/blob/main/CODE_OF_CONDUCT.md
|
18
|
+
|
19
|
+
[contrib-rocks]: https://contrib.rocks
|
29
20
|
|
30
|
-
|
21
|
+
[contributors]: https://github.com/rubocop-lts/rubocop-lts/graphs/contributors
|
31
22
|
|
32
23
|
[comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
|
33
24
|
|
34
|
-
[
|
35
|
-
[🖐contributors]: https://gitlab.com/rubocop-lts/rubocop-lts/-/graphs/main
|
36
|
-
[🚎src-main]: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/main
|
37
|
-
[🏘chat]: https://gitter.im/rubocop-lts/community
|
38
|
-
[rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
39
|
-
[rubygems]: https://rubygems.org
|
25
|
+
[source]: https://github.com/rubocop-lts/rubocop-lts/
|