rubocop-ruby2_6 1.0.2 → 1.0.3

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: c7e276c4660bc9e0eab7dc61140d7da6279f8cdc6ae8fe3a31603ff4ea62c7f3
4
- data.tar.gz: 8744db61307f730bae323ccede01dc788aa34e53858f23245c3677b285339975
3
+ metadata.gz: e2f8fffee2adb115bb57adae17f5edfe0eefa72e793c17f11a76ab63379ed486
4
+ data.tar.gz: 21757b6e9dd4cb39068f5aa0b86eb003c62f85f6790f5dcd12d5252008fba9c1
5
5
  SHA512:
6
- metadata.gz: 0ccdb66f16bed6bccfd36e9a43d4c79f5639781c173bd1ff69bce35b838f02659fcfc1be0c471319d8124e8e2e11bfe49c585420e22cf3b4cd1ed8fb9c1c7d0e
7
- data.tar.gz: 7a6d92c12c0b7d57eecd5243d15e0e765534444d5c3e493c817506e8dfb77d5dd0f2ae8a17629c4d9887ce015ec1f075858748854409bc00ccfdd594991a1747
6
+ metadata.gz: b498d626678e4ab322e88c9af2e090786e30fb597662af2067625ed4bb97fa54ddbbe42d8cee975b93ecfff1d002a2c4d8fdd98f068e758c91d483f5ae2637d1
7
+ data.tar.gz: f0a98857a5f1459477db8c3e72d38a0ae030804a65569795fbc8e28a5b05e15808a7d4316d95816b487f5c035bbe42baf620b56f47f5d56407fe664ee0bc3f04
data/CHANGELOG.md CHANGED
@@ -13,37 +13,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ### Removed
15
15
 
16
+ ## [1.0.3] 2022-05-03
17
+ ### Fixed
18
+ * Added missing rubocop.yml for inherit_gem directive
19
+
16
20
  ## [1.0.2] 2022-05-02
17
21
  ### Added
18
22
  * Documentation
19
23
 
20
- ### Changed
21
-
22
- ### Fixed
23
-
24
- ### Removed
25
-
26
24
  ## [1.0.1] 2022-05-01
27
- ### Added
28
-
29
- ### Changed
30
-
31
25
  ### Fixed
32
26
  * Ruby version requirement fixed to 2.6
33
27
 
34
- ### Removed
35
-
36
28
  ## [1.0.0] yanked
37
29
  ### Added
38
30
  * Initial release (yanked)
39
31
 
40
- ### Changed
41
-
42
- ### Fixed
43
-
44
- ### Removed
45
-
46
- [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_6/compare/v1.0.2...HEAD
32
+ [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_6/compare/v1.0.3...HEAD
33
+ [1.0.3]: https://github.com/rubocop-semver/rubocop-ruby2_6/compare/v1.0.2...v1.0.3
47
34
  [1.0.2]: https://github.com/rubocop-semver/rubocop-ruby2_6/compare/v1.0.1...v1.0.2
48
35
  [1.0.1]: https://github.com/rubocop-semver/rubocop-ruby2_6/compare/v1.0.0...v1.0.1
49
36
  [1.0.0]: https://github.com/rubocop-semver/rubocop-ruby2_6/compare/d21b64e4f7ab2d581ed6882c430dd042fe73769b...v1.0.0
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Ruby26
5
- VERSION = "1.0.2"
5
+ VERSION = "1.0.3"
6
6
  end
7
7
  end
data/rubocop.yml ADDED
@@ -0,0 +1,3 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+ NewCops: enable
@@ -0,0 +1,6 @@
1
+ module Rubocop
2
+ module Ruby26
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby2_6
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -67,6 +67,8 @@ files:
67
67
  - SECURITY.md
68
68
  - lib/rubocop/ruby2_6.rb
69
69
  - lib/rubocop/ruby2_6/version.rb
70
+ - rubocop.yml
71
+ - sig/rubocop/ruby2_6.rbs
70
72
  - spec/config/rspec/rspec_core.rb
71
73
  - spec/rubocop/ruby2_6_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-ruby2_6
78
- source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_6/tree/v1.0.2
79
- changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_6/blob/v1.0.2/CHANGELOG.md
80
+ source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_6/tree/v1.0.3
81
+ changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_6/blob/v1.0.3/CHANGELOG.md
80
82
  bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby2_6/issues
81
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_6/1.0.2
83
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_6/1.0.3
82
84
  wiki_uri: https://github.com/rubocop-semver/rubocop-ruby2_6/wiki
83
85
  rubygems_mfa_required: 'true'
84
86
  post_install_message: