rubocop-ruby1_9 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/rubocop/ruby1_9/version.rb +1 -1
- data/rubocop.yml +8 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 075b04dd2ce8d71e9b0cd4f89a5171a252e0a63ca0d6ec04aeff998587ae9b27
|
4
|
+
data.tar.gz: f91d895c6b9a8bda1451e0350505f16e5c51d6472a2f728646b058dc475b7232
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25583f1d969a6f20960bd4cee1be06876a5c582525e50cda805755287e4e80914381f226e040498104a2a462232c3b0f70ff512e1cef56dd93dad3469102599a
|
7
|
+
data.tar.gz: aef35e9fe265ac217d6e04c858c62f8fce0806e94e9ce01790eee59c3d6681d76b1041b122aed3f4fe8799f6c4647f6f77ed378729b146617fa11cabbd5b1f4b
|
data/CHANGELOG.md
CHANGED
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
14
14
|
|
15
15
|
### Removed
|
16
16
|
|
17
|
+
## [1.0.3] 2022-05-03
|
18
|
+
### Added
|
19
|
+
* Style/BracesAroundHashParameters configured to help transition to Ruby 2.7+
|
20
|
+
|
17
21
|
## [1.0.1] 2022-05-03
|
18
22
|
### Fixed
|
19
23
|
* Added missing rubocop.yml for inherit_gem directive
|
@@ -22,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
22
26
|
### Added
|
23
27
|
* Initial release
|
24
28
|
|
25
|
-
[Unreleased]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.
|
29
|
+
[Unreleased]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.2...HEAD
|
30
|
+
[1.0.2]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.1...v1.0.2
|
26
31
|
[1.0.1]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.0...v1.0.1
|
27
32
|
[1.0.0]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/8fb0f104adf43c5a0e3487b390f91881f79e4d89...v1.0.0
|
data/rubocop.yml
CHANGED
@@ -0,0 +1,8 @@
|
|
1
|
+
# Removed as of 0.80.0
|
2
|
+
# braces setting is for compatibility with Ruby 2.7+
|
3
|
+
# See:
|
4
|
+
# * https://github.com/rubocop/rubocop/issues/7641
|
5
|
+
# * https://github.com/rubocop/rubocop/pull/7643
|
6
|
+
Style/BracesAroundHashParameters:
|
7
|
+
Enabled: true
|
8
|
+
EnforcedStyle: context_dependent
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-ruby1_9
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -77,10 +77,10 @@ licenses:
|
|
77
77
|
- MIT
|
78
78
|
metadata:
|
79
79
|
homepage_uri: https://github.com/rubocop-semver/rubocop-ruby1_9
|
80
|
-
source_code_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/tree/v1.0.
|
81
|
-
changelog_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/blob/v1.0.
|
80
|
+
source_code_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/tree/v1.0.2
|
81
|
+
changelog_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/blob/v1.0.2/CHANGELOG.md
|
82
82
|
bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/issues
|
83
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.
|
83
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.2
|
84
84
|
wiki_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/wiki
|
85
85
|
rubygems_mfa_required: 'true'
|
86
86
|
post_install_message:
|