rubocop-lts 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: 1d0f62222c364b0f21068ca7f061549e24f88b8dc9c0569bd326efe896838491
4
- data.tar.gz: 59d204a2d5c05b573c8c687c0d6c0e4a7babb32e037ee51cc1a28ef0a7a361b3
3
+ metadata.gz: 901f667086eb2c8df10089f14904f83ced780deea22634256f564103403f55b8
4
+ data.tar.gz: f183626be863e03760f7b09db1f900b26d3920549d8922bea43648389a349c56
5
5
  SHA512:
6
- metadata.gz: 8764a742217844a03e1593499e75fbe07ca317e97b8ef0ec0e54bc62136145b37defd6956221c4199db9ff60c618b5ec0785b51976238236df82214ae7fe600f
7
- data.tar.gz: 639f2c75d2b6a61eb882f24660c40c42af78bbc7cb9aeb8064bea88b62c7ed29b309049b2ace3440b6399f7dc0a44e45d0af41db106a570ede009f465d50b9d5
6
+ metadata.gz: 6022ff24daceb5eb05a6f5cc15fac34bef36fa866398237484e35711e1f149a768795f7aee83872f3762be34c52072732ef6b6c35c2154544a02000c0d45c71c
7
+ data.tar.gz: 20216a0493e7aa02588e90a80fc74540a5c6562dc3743eec44b4563029930d98d9d2fa3057cbc82ad212263dd97648e9ea444f4914f39473c43e8520a19acb77
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.3] - 2022-05-23
17
+ ### Fixed
18
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
19
+
16
20
  ## [1.0.2] - 2022-05-23
17
21
  ### Fixed
18
22
  - Ship rubocop config files in gem
@@ -27,7 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
31
  ### Added
28
32
  - Initial odd release supporting Ruby ~> 1.9
29
33
 
30
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.2...HEAD
34
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.3...HEAD
35
+ [1.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.2...v1.0.3
31
36
  [1.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.1...v1.0.2
32
37
  [1.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v1.0.0...v1.0.1
33
38
  [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 = "1.0.2".freeze
6
+ VERSION = "1.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: 1.0.2
4
+ version: 1.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/v1.0.2
54
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v1.0.2/CHANGELOG.md
53
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v1.0.3
54
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v1.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/1.0.2
56
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/1.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: