rubocop-lts 2.0.2 → 2.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: 6a7012e21fe7c6f6d963a5e7b78203448f01a87e294aaf419e9ffefef1b1bfae
4
- data.tar.gz: 6ddf9b8d4bbf6cb4ba2de1d6192daf40948b60d03803501bff704114dfe3b91d
3
+ metadata.gz: 28d506391566433bfa8be899ed985814496dbe110c2601e87f81cbc79df70557
4
+ data.tar.gz: 9fb9a48b574f5e75ee26c2f3cafd64161af4b0d69e53c8a3564ba0cfc1d592f5
5
5
  SHA512:
6
- metadata.gz: e065ecb18e90fea3fb0be879598763143b7355766bd451f82cf90fe33da999e2167a3caee62b8ba8ef62b757bc82b834375900524693b158a2a54c10b9dd8927
7
- data.tar.gz: 71f85b1aa4b483a749eacaaa7100adeb8f72df19af558a54e2900cc050452770687ecf04088e1ce0a571c4e96af6650669095cab79914f3140cbc4eb63dca661
6
+ metadata.gz: e4f3c4ce0f324afd346f5bc87a29e96597453aa247255aeb0e9108c2633c5999dfab6e49b03acb289ead12633dcadbb6ae4ce96f17c9e4be95f411d95c9c74ba
7
+ data.tar.gz: ae409d1efc14bdfa22a80a22d77d25bd789059988453c32277b3716faa9238e71f73621e342e96c72842b01ede83466243f44febbe5a44f69ee81f8b7bcc4a30
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
+ ## [2.0.3] - 2022-05-23
17
+ ### Fixed
18
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
19
+
16
20
  ## [2.0.2] - 2022-05-23
17
21
  ### Fixed
18
22
  - Ship rubocop config files in gem
@@ -27,6 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
31
  ### Added
28
32
  - Initial even release supporting Ruby >= 1.9
29
33
 
34
+ ## [1.0.3] - 2022-05-23
35
+ ### Fixed
36
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
37
+
30
38
  ## [1.0.2] - 2022-05-23
31
39
  ### Fixed
32
40
  - Ship rubocop config files in gem
@@ -41,12 +49,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
41
49
  ### Added
42
50
  - Initial odd release supporting Ruby ~> 1.9
43
51
 
44
- <<<<<<< HEAD
45
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.0...HEAD
46
- [2.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.1...v2.0.0
47
- =======
48
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.2...HEAD
52
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.3...HEAD
53
+ [2.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.2...v2.0.3
54
+ [2.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.1...v2.0.2
55
+ [2.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.0...v2.0.1
56
+ [2.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.3...v2.0.0
57
+ [1.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.2...v1.0.3
49
58
  [1.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.1...v1.0.2
50
- >>>>>>> b11fc61 (🔖 Prepare for 1.0.2)
51
59
  [1.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.0...v1.0.1
52
60
  [1.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/f0fcf8e7dbb4d884a01c7191e7f26ef8bf3b22af...v1.0.0
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Rubocop
5
5
  module Lts
6
- VERSION = "2.0.2".freeze
6
+ VERSION = "2.0.3".freeze
7
7
  end
8
8
  end
data/rubocop-lts.yml CHANGED
@@ -1,3 +1,6 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_9: rubocop.yml
3
+
1
4
  # Removed as of 0.80.0
2
5
  # braces setting is for compatibility with Ruby 2.7+
3
6
  # See:
data/rubocop-lts1_8.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  inherit_gem:
2
- rubocop-ruby1_9: rubocop.yml
2
+ rubocop-ruby1_9: rubocop-ruby1_8.yml
3
3
 
4
4
  ###################################################################
5
5
  # Rules that allow preservation of ruby 1.8.7 / ree compatibility #
data/spec/spec_helper.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  # This gem
5
- require "rubocop/ruby1_9"
5
+ require "rubocop/lts"
6
6
 
7
7
  # RSpec Configs
8
8
  require "config/rspec/rspec_core"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.0.3
19
+ version: 1.0.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.0.3
26
+ version: 1.0.5
27
27
  description: Rubocop LTS - Chaos Reduction In a Bottle
28
28
  email:
29
29
  - peter.boling@gmail.com
@@ -50,10 +50,10 @@ licenses:
50
50
  - MIT
51
51
  metadata:
52
52
  homepage_uri: https://github.com/rubocop-lts/rubocop-lts
53
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v2.0.2
54
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v2.0.2/CHANGELOG.md
53
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v2.0.3
54
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v2.0.3/CHANGELOG.md
55
55
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
56
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/2.0.2
56
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/2.0.3
57
57
  wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
58
58
  rubygems_mfa_required: 'true'
59
59
  post_install_message: