rubocop-ruby1_9 1.0.0 → 1.0.1

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: c5fe6700b17673721797f20367bcb852e3fd79eb31d2ef349297efe02b20d598
4
- data.tar.gz: f3344d68fb826bb74a44fa4fd7fa2cf51a4170da693c338698e914550475f923
3
+ metadata.gz: 2b9505e5e39ba9289a9e99c83964d1cc43b481cadc9855683494ab82e73ac655
4
+ data.tar.gz: 7d49d670355f6b87fb81d90af58a4f61937038e7d50714253752f67fbbcf7256
5
5
  SHA512:
6
- metadata.gz: 72397e9835126ee9791fd75a58e2e5514693d68ab344a6478781b46c1e8de1db5af02636b3b694be616f18feb36c5a148459c278592d83eef21f5dca1de19740
7
- data.tar.gz: f66421cb5b2ad7397b217f61f62e74081b948bbf1047be6197b292ee56eff784b40d2eef81d056f0fb0e82f892312d2c3dcefa1f21df9af3f7222a5ccaea1c0f
6
+ metadata.gz: cd70809e09c01696fd8bda31e0842fd70d572fee503bd0deccc81a5e2223eff645bef34262e8e424df2d41d54a3453948e53851c98b075c3990908527d120aec
7
+ data.tar.gz: a38a9366ae79597320d5ad919fa9a8ce8cf2e53c5ea4444a1181910d1f8e7a75c7fd2fa780f26224735b90a2a9eba37e01b09f3f7561e4ffce0410a8e8df458c
data/CHANGELOG.md CHANGED
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
  ### Added
9
+ * Documentation
9
10
 
10
11
  ### Changed
11
12
 
@@ -13,15 +14,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
14
 
14
15
  ### Removed
15
16
 
17
+ ## [1.0.1] 2022-05-03
18
+ ### Fixed
19
+ * Added missing rubocop.yml for inherit_gem directive
20
+
16
21
  ## [1.0.0] 2022-05-01
17
22
  ### Added
18
23
  * Initial release
19
24
 
20
- ### Changed
21
-
22
- ### Fixed
23
-
24
- ### Removed
25
-
26
- [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/.v1.0.0...HEAD
25
+ [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.1...HEAD
26
+ [1.0.1]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.0...v1.0.1
27
27
  [1.0.0]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/8fb0f104adf43c5a0e3487b390f91881f79e4d89...v1.0.0
data/README.md CHANGED
@@ -81,13 +81,15 @@ inherit_gem:
81
81
  This has the same effect as you declaring the following in your `.rubocop.yml`:
82
82
 
83
83
  ```yaml
84
- AllCops:
84
+ # AllCops:
85
85
  # The sibling gems for newer versions of Ruby support the TargetRubyVersion directive as soon as Rubocop adds it.
86
86
  # TargetRubyVersion: 1.9
87
87
  # The sibling gems for newer versions of Ruby support the NewCops directive as soon as Rubocop adds it.
88
88
  # NewCops: enable
89
89
  ```
90
90
 
91
+ Everything is commented out! None of these settings exist in the very old version of rubocop that works with Ruby 1.9.
92
+
91
93
  Let's talk about these settings.
92
94
 
93
95
  ## TargetRubyVersion
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Ruby19
5
- VERSION = "1.0.0".freeze
5
+ VERSION = "1.0.1".freeze
6
6
  end
7
7
  end
data/rubocop.yml ADDED
File without changes
@@ -0,0 +1,6 @@
1
+ module Rubocop
2
+ module Ruby19
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby1_9
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-01 00:00:00.000000000 Z
11
+ date: 2022-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -67,6 +67,8 @@ files:
67
67
  - SECURITY.md
68
68
  - lib/rubocop/ruby1_9.rb
69
69
  - lib/rubocop/ruby1_9/version.rb
70
+ - rubocop.yml
71
+ - sig/rubocop/ruby1_9.rbs
70
72
  - spec/config/rspec/rspec_core.rb
71
73
  - spec/rubocop/ruby1_9_spec.rb
72
74
  - spec/spec_helper.rb
@@ -75,10 +77,10 @@ licenses:
75
77
  - MIT
76
78
  metadata:
77
79
  homepage_uri: https://github.com/rubocop-semver/rubocop-ruby1_9
78
- source_code_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/tree/v1.0.0
79
- changelog_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/blob/v1.0.0/CHANGELOG.md
80
+ source_code_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/tree/v1.0.1
81
+ changelog_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/blob/v1.0.1/CHANGELOG.md
80
82
  bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/issues
81
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.0
83
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.1
82
84
  wiki_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/wiki
83
85
  rubygems_mfa_required: 'true'
84
86
  post_install_message: