rubocop-ruby1_9 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31fff4a1a4fac9e1548c2ff0f72681dfc33c58689e91237a002ac158f6d9f620
4
- data.tar.gz: 605ac2385e5e75cfe8515c4d33d01ac71d5a39e941c2f43bad78a92c60986fe0
3
+ metadata.gz: f8e50addd2252a83bdbc62e3dc9d3230a1769120d3e8e732675a215fbcffe1f7
4
+ data.tar.gz: 0abda0cbeca2038191a08a455c8030a7555b77405268977517c40147f4143d19
5
5
  SHA512:
6
- metadata.gz: a3c161a19166348b4317f6f23f0a878c110a58a3eefe1bf8b21770a382ca18531e11a56c1e7583b1609c7af61f30b2dde980bd3ee56bf5e0c46c0f137e734721
7
- data.tar.gz: 9858ea30fb00c67edb3b2e81bb8cb5fbddfcd2a883543fd50f8eaccd0272ef9745c477f7e6d481d23211c594ad7aeb7ee49fece86be0c5301c9a5f7769136378
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
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Rubocop
5
5
  module Ruby19
6
- VERSION = "1.0.4".freeze
6
+ VERSION = "1.0.5".freeze
7
7
  end
8
8
  end
@@ -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
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.4
67
- changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v1.0.4/CHANGELOG.md
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.4
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: