rubocop-ruby2_1 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 910d41482f29f3833cfcb4da4c9ff2f558a2b4e3d3b3c0965487d7ba7687dd49
4
- data.tar.gz: 68b06b6362879d49bb7db0f54b2bed933646070a4efa014d9c8d7c4b9cf84ed1
3
+ metadata.gz: 9ad87962197495981d8be3065a8ba37c02b9d508d3f6ce40963bb15430caffcb
4
+ data.tar.gz: 82dbd57d5b687d2e1dacc8c8d46d18e8d437dd69ec1400a48d4a9baad2b4a1f2
5
5
  SHA512:
6
- metadata.gz: 2c931b8dee871334eb5bae7b0ba2a692f2566a303c2591d63a40537f63b642c53dde5d7d3d44f98120d307c1593b2ecca83b79a844dbc00d90b25fbd6e239804
7
- data.tar.gz: 878508ea4fb0ac2ea1d96dd35fdfb86e2bddf74ba5b9410a4dc529fa314feefcdfe27263a8b35bfc439cdc9a54630e1557713c85a2f96e15fd5ed9cb00fd3d4a
6
+ metadata.gz: 9257d033e8627e5d360ca3049ecf7b708c7b77bb29a217e29dcfaafb182400e7e7c45378e3f068ad85f73fb15f4007284765245803e638fe699ee6de87bc613d
7
+ data.tar.gz: 65d9eef19bb122c5f64bda3f176f17840ed4938b008b99dab9340113eb0daecafdae52643869546a28f74d1b6145fafe863b6f6f02535d40bd428fbcb213290a
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.2] 2022-05-03
17
+ ### Fixed
18
+ * Added missing rubocop.yml for inherit_gem directive
19
+
16
20
  ## [1.0.1] 2022-05-02
17
21
  ### Added
18
22
  * Documentation
@@ -20,20 +24,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
24
  ### Changed
21
25
  * Rubocop lock 0.57.0 => 0.57.2
22
26
 
23
- ### Fixed
24
-
25
- ### Removed
26
-
27
27
  ## [1.0.0] 2022-05-01
28
28
  ### Added
29
29
  * Initial release
30
30
 
31
- ### Changed
32
-
33
- ### Fixed
34
-
35
- ### Removed
36
-
37
- [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_1/compare/v1.0.1...HEAD
31
+ [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_1/compare/v1.0.2...HEAD
32
+ [1.0.2]: https://github.com/rubocop-semver/rubocop-ruby2_1/compare/v1.0.1...v1.0.2
38
33
  [1.0.1]: https://github.com/rubocop-semver/rubocop-ruby2_1/compare/v1.0.0...v1.0.1
39
34
  [1.0.0]: https://github.com/rubocop-semver/rubocop-ruby2_1/compare/e23c1cb798e1198c7b2dcca40a586b5ad6294348...v1.0.0
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Ruby21
5
- VERSION = "1.0.1".freeze
5
+ VERSION = "1.0.2".freeze
6
6
  end
7
7
  end
data/rubocop.yml ADDED
@@ -0,0 +1,2 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.1
@@ -0,0 +1,6 @@
1
+ module Rubocop
2
+ module Ruby21
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_1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
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_1.rb
69
69
  - lib/rubocop/ruby2_1/version.rb
70
+ - rubocop.yml
71
+ - sig/rubocop/ruby2_1.rbs
70
72
  - spec/config/rspec/rspec_core.rb
71
73
  - spec/rubocop/ruby2_1_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_1
78
- source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_1/tree/v1.0.1
79
- changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_1/blob/v1.0.1/CHANGELOG.md
80
+ source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_1/tree/v1.0.2
81
+ changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_1/blob/v1.0.2/CHANGELOG.md
80
82
  bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby2_1/issues
81
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_1/1.0.1
83
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_1/1.0.2
82
84
  wiki_uri: https://github.com/rubocop-semver/rubocop-ruby2_1/wiki
83
85
  rubygems_mfa_required: 'true'
84
86
  post_install_message: