rubocop-ruby1_9 1.0.4 → 1.0.5
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
- data/CHANGELOG.md +4 -0
- data/lib/rubocop/ruby1_9/version.rb +1 -1
- data/rubocop-ruby1_8.yml +34 -0
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8e50addd2252a83bdbc62e3dc9d3230a1769120d3e8e732675a215fbcffe1f7
|
|
4
|
+
data.tar.gz: 0abda0cbeca2038191a08a455c8030a7555b77405268977517c40147f4143d19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bad2cf3602d52a0a63051d36417a7338863636258e1e79faee0fbeb220d2cfaff5d8b121865f3513581c208613b09efae10e1f4d02432c5f6949f22133f309b2
|
|
7
|
+
data.tar.gz: 6721140787537dfb32f70e70c4e2071434db941431a1d7fb9234ec5dd3f5f04c99ce0d60a84dcf64025eec0fe90f964daaeb3bb5fa569f691e16140a4b8e8fb5
|
data/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
13
13
|
|
|
14
14
|
### Removed
|
|
15
15
|
|
|
16
|
+
## [1.0.5] 2022-05-23
|
|
17
|
+
### Fixed
|
|
18
|
+
- Fix typo in rubocop-ruby1_8.yml filename to be shipped
|
|
19
|
+
|
|
16
20
|
## [1.0.4] 2022-05-23
|
|
17
21
|
### Fixed
|
|
18
22
|
- Ship rubocop-ruby1_8.yml with the gem
|
data/rubocop-ruby1_8.yml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
inherit_gem:
|
|
2
|
+
rubocop-ruby1_9: rubocop.yml
|
|
3
|
+
|
|
4
|
+
###################################################################
|
|
5
|
+
# Rules that allow preservation of ruby 1.8.7 / ree compatibility #
|
|
6
|
+
###################################################################
|
|
7
|
+
|
|
8
|
+
Style/Documentation:
|
|
9
|
+
Enabled: false
|
|
10
|
+
|
|
11
|
+
# Ruby 1.8.7 needs the . on chain of method calls at the end of a line
|
|
12
|
+
Style/DotPosition:
|
|
13
|
+
EnforcedStyle: trailing
|
|
14
|
+
|
|
15
|
+
Style/FrozenStringLiteralComment:
|
|
16
|
+
Enabled: true
|
|
17
|
+
|
|
18
|
+
# Ruby 1.8.7 doesn't have 1.9 style hash syntax
|
|
19
|
+
Style/HashSyntax:
|
|
20
|
+
EnforcedStyle: hash_rockets
|
|
21
|
+
|
|
22
|
+
# Ruby 1.8.7 doesn't have the -> lambda
|
|
23
|
+
Style/Lambda:
|
|
24
|
+
Enabled: false
|
|
25
|
+
|
|
26
|
+
Style/PercentLiteralDelimiters:
|
|
27
|
+
Enabled: false
|
|
28
|
+
|
|
29
|
+
Style/SymbolArray:
|
|
30
|
+
EnforcedStyle: brackets
|
|
31
|
+
|
|
32
|
+
Style/WordArray:
|
|
33
|
+
EnforcedStyle: brackets
|
|
34
|
+
|
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.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
@@ -53,6 +53,7 @@ files:
|
|
|
53
53
|
- SECURITY.md
|
|
54
54
|
- lib/rubocop/ruby1_9.rb
|
|
55
55
|
- lib/rubocop/ruby1_9/version.rb
|
|
56
|
+
- rubocop-ruby1_8.yml
|
|
56
57
|
- rubocop.yml
|
|
57
58
|
- sig/rubocop/ruby1_9.rbs
|
|
58
59
|
- spec/config/rspec/rspec_core.rb
|
|
@@ -63,10 +64,10 @@ licenses:
|
|
|
63
64
|
- MIT
|
|
64
65
|
metadata:
|
|
65
66
|
homepage_uri: https://github.com/rubocop-lts/rubocop-ruby1_9
|
|
66
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v1.0.
|
|
67
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v1.0.
|
|
67
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v1.0.5
|
|
68
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v1.0.5/CHANGELOG.md
|
|
68
69
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/issues
|
|
69
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.
|
|
70
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.5
|
|
70
71
|
wiki_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/wiki
|
|
71
72
|
rubygems_mfa_required: 'true'
|
|
72
73
|
post_install_message:
|