rubocop-lts 3.0.1 → 3.0.2

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: 1c9aed619ccb721ef5e885de677b5edb08c4d43b8c9b470431c954060547f208
4
- data.tar.gz: 0cbd601a448870008f7728166ce9ee282c25558c26312f2996eee78e434fab49
3
+ metadata.gz: c9ac14b352fda4248d76af945ac2c3ca5397514252e4b6ea577330d1dc13d74a
4
+ data.tar.gz: 8df16bd10307c79afd0c9a8b977c3482eacd05ba4127b6ddef4ed7895a00d632
5
5
  SHA512:
6
- metadata.gz: b1a70d0da5a9a091aff0b7a8bbef3c2a275b660edcd97c78ea405fc25d3c24bdc734eadc67dd6e43c229fff3e96c9e36a92f26a4acad655a57fb1daa2f82f61b
7
- data.tar.gz: b820d9142dcc384fa5e6f7dba2647f407bdf01c24c2b5ac1fdb8e6ccc51633d178ced3ca18e60125c81484f195d867b3c5d19b4881c00c12a1052deb3dab307b
6
+ metadata.gz: 779c6b1cd3bde1c8fa8e241a8f72508187cd3c61b773b253ff3e64fb4197da133dfc78838e6dc4a0bf478e36f3e30bd0ed434106fe10b02ac48cdf686ce2db95
7
+ data.tar.gz: dbbdf7d02c73c39708dc9c6400ade80adcafc803cb273f69f003f8106656998296b1d12dcb2b1cde1a8468db48024dd5f3b73885d66235d4964ff7e23d875fe2
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
+ ## [3.0.2] - 2022-05-23
17
+ ### Fixed
18
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
19
+
16
20
  ## [3.0.1] - 2022-05-23
17
21
  ### Fixed
18
22
  - Ship rubocop config files in gem
@@ -22,6 +26,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
26
  ### Added
23
27
  - Initial odd release supporting Ruby ~> 2.0
24
28
 
29
+ ## [2.0.3] - 2022-05-23
30
+ ### Fixed
31
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
32
+
25
33
  ## [2.0.2] - 2022-05-23
26
34
  ### Fixed
27
35
  - Ship rubocop config files in gem
@@ -36,6 +44,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
36
44
  ### Added
37
45
  - Initial even release supporting Ruby >= 1.9
38
46
 
47
+ ## [1.0.3] - 2022-05-23
48
+ ### Fixed
49
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
50
+
39
51
  ## [1.0.2] - 2022-05-23
40
52
  ### Fixed
41
53
  - Ship rubocop config files in gem
@@ -52,10 +64,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
52
64
 
53
65
  [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.1...HEAD
54
66
  [3.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.0...v3.0.1
55
- [3.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.2...v3.0.0
67
+ [3.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.3...v3.0.0
68
+ [2.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.2...v2.0.3
56
69
  [2.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.1...v2.0.2
57
70
  [2.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.0...v2.0.1
58
- [2.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.1...v2.0.0
71
+ [2.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.3...v2.0.0
72
+ [1.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.2...v1.0.3
59
73
  [1.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.1...v1.0.2
60
74
  [1.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.0...v1.0.1
61
75
  [1.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/f0fcf8e7dbb4d884a01c7191e7f26ef8bf3b22af...v1.0.0
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "3.0.1".freeze
5
+ VERSION = "3.0.2".freeze
6
6
  end
7
7
  end
data/rubocop-lts.yml CHANGED
@@ -1,3 +1,6 @@
1
+ inherit_gem:
2
+ rubocop-ruby2_0: 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/spec/spec_helper.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # This gem
4
- require "rubocop/ruby2_0"
4
+ require "rubocop/lts"
5
5
 
6
6
  # RSpec Configs
7
7
  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: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -49,10 +49,10 @@ licenses:
49
49
  - MIT
50
50
  metadata:
51
51
  homepage_uri: https://github.com/rubocop-lts/rubocop-lts
52
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v3.0.1
53
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v3.0.1/CHANGELOG.md
52
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v3.0.2
53
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v3.0.2/CHANGELOG.md
54
54
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
55
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/3.0.1
55
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/3.0.2
56
56
  wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
57
57
  rubygems_mfa_required: 'true'
58
58
  post_install_message: