rubocop-ruby1_9 1.0.5 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +46 -12
- data/CONTRIBUTING.md +25 -11
- data/LICENSE.txt +1 -1
- data/README.md +263 -195
- data/SECURITY.md +5 -4
- data/lib/rubocop/ruby1_9/railtie.rb +14 -0
- data/lib/rubocop/ruby1_9/version.rb +3 -2
- data/lib/rubocop/ruby1_9.rb +15 -2
- data/rubocop-lts/rails.yml +11 -0
- data/rubocop-lts/rails_rspec.yml +6 -0
- data/rubocop-lts/rspec.yml +9 -0
- data/rubocop-lts/ruby.yml +43 -0
- data/rubocop-lts/ruby_rspec.yml +6 -0
- data/rubocop-lts/rubygem.yml +6 -0
- data/rubocop-lts/rubygem_rspec.yml +4 -0
- data/rubocop-lts/strict/rails.yml +22 -0
- data/rubocop-lts/strict/rspec.yml +14 -0
- data/rubocop-lts/strict/ruby.yml +14 -0
- data/rubocop.yml +14 -15
- data/sig/rubocop/ruby1_9.rbs +4 -2
- data.tar.gz.sig +1 -0
- metadata +202 -31
- metadata.gz.sig +0 -0
- data/rubocop-ruby1_8.yml +0 -34
- data/spec/config/rspec/rspec_core.rb +0 -14
- data/spec/rubocop/ruby1_9_spec.rb +0 -8
- data/spec/spec_helper.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33cf22d726150fc0fa03839a8e283fc7217753a3364135a90143afef877fcf32
|
4
|
+
data.tar.gz: 3284dc99014ea805b71644ab07459c4a588da30b4006cf41e81c27194729e16c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c99a64687065e9ec67a959a72978856cbc6a74f4f5ec6e766e5c69ac9b38f30de1210f0d80d747ad0f87ba617261f228c0c18ab3ffd1a7d1b03ce86fcded7feb
|
7
|
+
data.tar.gz: 91f27d33012085ae4b4aba8ed152f06f2d05af2a4074d28e867785e245afc370f92cec5b19770d04839d2f5da8b5264c78bb6041ea09aeacb3dfe82010759559
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -6,12 +6,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
|
-
|
10
9
|
### Changed
|
10
|
+
### Fixed
|
11
|
+
### Removed
|
11
12
|
|
13
|
+
## [2.0.2] 2023-05-18
|
14
|
+
### Removed
|
15
|
+
- stray puts debugging
|
16
|
+
|
17
|
+
## [2.0.1] 2023-05-18
|
12
18
|
### Fixed
|
19
|
+
- Ship lib/rubocop/ruby1_9/rakelib/rubocop_gradual.rake
|
20
|
+
- Fix rake_tasks hook on Railtie
|
13
21
|
|
22
|
+
## [2.0.0] 2023-05-17 [YANKED]
|
23
|
+
### Added
|
24
|
+
- Configs for:
|
25
|
+
- rubocop
|
26
|
+
- rubocop-gradual
|
27
|
+
- rubocop-md
|
28
|
+
- rubocop-rake
|
29
|
+
- rubocop-shopify
|
30
|
+
- rubocop-thread_safety
|
31
|
+
- standard
|
32
|
+
- standard-performance
|
33
|
+
- standard-custom
|
34
|
+
- standard-rubocop-lts
|
35
|
+
- And optionally, if you are using RSpec:
|
36
|
+
- rubocop-rspec
|
37
|
+
- And optionally, if you are building a RubyGem:
|
38
|
+
- rubocop-packaging
|
39
|
+
- And optionally, if you are building a Rails app:
|
40
|
+
- betterlint
|
41
|
+
- standard-rails
|
42
|
+
- version_gem
|
14
43
|
### Removed
|
44
|
+
- rubocop-ruby1_8.yml (replaced with a wholly separate gem [rubocop-ruby1_8](https://gitlab.com/rubocop-lts/rubocop-ruby1_8)
|
45
|
+
- Support for Ruby <= 2.6. Minimum Ruby Version is now 2.7
|
15
46
|
|
16
47
|
## [1.0.5] 2022-05-23
|
17
48
|
### Fixed
|
@@ -23,29 +54,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
23
54
|
|
24
55
|
## [1.0.3] 2022-05-22
|
25
56
|
### Added
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
57
|
+
- Better documentation
|
58
|
+
- Default cop enabled for inherited rubocop.yml: Style/Encoding
|
59
|
+
- Rubocop => RuboCop typo repair
|
60
|
+
- New rubocop-ruby1_8.yml to assist with continuing support for Ruby 1.8
|
61
|
+
- Ruby Version Support Matrix
|
62
|
+
- Support installing via rubygems, without bundler
|
32
63
|
|
33
64
|
### Fixed
|
34
|
-
|
65
|
+
- Ability to install via `gem install` command (i.e. without bundler)
|
35
66
|
|
36
67
|
## [1.0.2] 2022-05-03
|
37
68
|
### Added
|
38
|
-
|
69
|
+
- Style/BracesAroundHashParameters configured to help transition to Ruby 2.7+
|
39
70
|
|
40
71
|
## [1.0.1] 2022-05-03
|
41
72
|
### Fixed
|
42
|
-
|
73
|
+
- Added missing rubocop.yml for inherit_gem directive
|
43
74
|
|
44
75
|
## [1.0.0] 2022-05-01
|
45
76
|
### Added
|
46
|
-
|
77
|
+
- Initial release
|
47
78
|
|
48
|
-
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/
|
79
|
+
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.1...HEAD
|
80
|
+
[2.0.1]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.0...v2.0.1
|
81
|
+
[2.0.0]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.5...v2.0.0
|
82
|
+
[1.0.5]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.4...v1.0.5
|
49
83
|
[1.0.4]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.3...v1.0.4
|
50
84
|
[1.0.3]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.2...v1.0.3
|
51
85
|
[1.0.2]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.1...v1.0.2
|
data/CONTRIBUTING.md
CHANGED
@@ -1,25 +1,39 @@
|
|
1
1
|
## Contributing
|
2
2
|
|
3
|
-
Bug reports and pull requests are welcome on
|
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
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
|
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].
|
8
9
|
|
9
|
-
##
|
10
|
-
|
11
|
-
[![Contributors](https://contrib.rocks/image?repo=rubocop-lts/rubocop-ruby1_9)][contributors]
|
10
|
+
## Release
|
12
11
|
|
13
|
-
|
12
|
+
To release a new version:
|
14
13
|
|
15
|
-
|
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 `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].
|
16
23
|
|
17
|
-
|
24
|
+
NOTE: You will need to have a public key in `certs/`, and list your cert in the
|
25
|
+
`gemspec`, in order to sign the new release.
|
26
|
+
See: [RubyGems Security Guide][rubygems-security-guide]
|
18
27
|
|
19
|
-
|
28
|
+
## Contributors
|
20
29
|
|
21
|
-
|
30
|
+
See: [https://gitlab.com/rubocop-lts/rubocop-ruby1_9/-/graphs/main][🖐contributors]
|
22
31
|
|
23
32
|
[comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
|
24
33
|
|
25
|
-
[
|
34
|
+
[🤝conduct]: https://gitlab.com/rubocop-lts/rubocop-ruby1_9/-/blob/main/CODE_OF_CONDUCT.md
|
35
|
+
[🖐contributors]: https://gitlab.com/rubocop-lts/rubocop-ruby1_9/-/graphs/main
|
36
|
+
[🚎src-main]: https://gitlab.com/rubocop-lts/rubocop-ruby1_9/-/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
|
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2022 Peter Boling
|
3
|
+
Copyright (c) 2022 - 2023 Peter H. Boling of https://railsbling.com
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|