rubocop-lts 4.0.3 → 5.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: 2559c45ff3cdcac346236ca2d60d30ad769e9d4005000034663855285ad9fa9c
4
- data.tar.gz: c952d9d36203d1ec416a0bde4657862efc428922c6a345c5642a1eda84e49125
3
+ metadata.gz: 89791161706b31da7f7790c29986a00f6476641823d5b06737577f499f22da25
4
+ data.tar.gz: bc4480e3d9a2ad684e4d543f571ce95e27dae6f6769df9e21f492c3053bcee46
5
5
  SHA512:
6
- metadata.gz: 04ffa56a711ce5ab2581f0eb5e4cde189d5a13989bdb6f0f1c31bc003538d56d9b1897cdacca27e372606b3fd98b5ea113e88ea7d78556d193b931a497937d6b
7
- data.tar.gz: fd3ea23479ed0852b86a92812d7a1a83acb65bbdc6b7577c63c0f57311bcb2620a45ca2b48e23d5312443e5c643bc11b3241ce0f5dd9d6d99b0026ced5bf8469
6
+ metadata.gz: 5cad0bf5622b91039f956053876ecf5146b3bfe68bbb9d1a394065793b5056ecadf8e7ab8967415e6f5a4fa18af016ea986f08efd112ce5675b574f198b4d2d7
7
+ data.tar.gz: 24311f50e9cc1cb1267b948eefa65ae4ac74409011235bcf332ca6fd44aa7d9a0189bf41bd99b15103e290206e3b9b53017a7fe99187952d5dd689d69c145e5c
data/CHANGELOG.md CHANGED
@@ -13,10 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ### Removed
15
15
 
16
- ## [4.0.3] - 2022-06-08
16
+ ## [5.0.2] - 2022-06-08
17
17
  ### Added
18
18
  - Improve, and dry up documentation
19
19
 
20
+ ## [5.0.1] - 2022-05-23
21
+ ### Fixed
22
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
23
+
24
+ ## [5.0.0] - 2022-05-23
25
+ ### Added
26
+ - Initial odd release supporting Ruby ~> 2.1
27
+
28
+ ## [4.0.3] - 2022-06-08
20
29
  ### Fixed
21
30
  - Allow install up to Ruby < 4, which allows running against current Ruby HEAD @ 3.2-dev
22
31
 
@@ -33,6 +42,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
42
  ### Added
34
43
  - Initial even release supporting Ruby >= 2.0
35
44
 
45
+ ## [3.0.3] - 2022-06-08
46
+ ### Added
47
+ - Improve, and dry up documentation
48
+
36
49
  ## [3.0.2] - 2022-05-23
37
50
  ### Fixed
38
51
  - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
@@ -95,11 +108,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
95
108
  ### Added
96
109
  - Initial odd release supporting Ruby ~> 1.9
97
110
 
98
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.3...HEAD
111
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.2...HEAD
112
+ [5.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.1...v5.0.2
113
+ [5.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.0...v5.0.1
114
+ [5.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.3...v5.0.0
99
115
  [4.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.2...v4.0.3
100
116
  [4.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.1...v4.0.2
101
117
  [4.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.0...v4.0.1
102
- [4.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.2...v4.0.0
118
+ [4.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.3...v4.0.0
119
+ [3.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.2...v3.0.3
103
120
  [3.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.1...v3.0.2
104
121
  [3.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.0...v3.0.1
105
122
  [3.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.5...v3.0.0
data/README.md CHANGED
@@ -47,7 +47,7 @@
47
47
  ## 🌳 This Branch
48
48
 
49
49
  <!-- FIND VERSION -->
50
- **This README is for the even release of `rubocop-lts` supporting Ruby >= 2.0.0.**
50
+ **This README is for the odd release of `rubocop-lts` supporting Ruby ~> 2.1.0.**
51
51
 
52
52
  ### 📼 Supporting Ruby 1.8
53
53
 
@@ -91,7 +91,7 @@ Add this line to your application's Gemfile:
91
91
 
92
92
  <!-- FIND VERSION -->
93
93
  ```ruby
94
- gem 'rubocop-lts', '~> 4.0', require: false
94
+ gem 'rubocop-lts', '~> 5.0', require: false
95
95
  ```
96
96
 
97
97
  And then execute:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "4.0.3".freeze
5
+ VERSION = "5.0.2".freeze
6
6
  end
7
7
  end
data/rubocop-lts.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  inherit_gem:
2
- rubocop-ruby2_0: rubocop.yml
2
+ rubocop-ruby2_1: rubocop.yml
3
3
 
4
4
  # Removed as of 0.80.0
5
5
  # braces setting is for compatibility with Ruby 2.7+
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: 4.0.3
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -11,19 +11,19 @@ cert_chain: []
11
11
  date: 2022-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rubocop-ruby2_0
14
+ name: rubocop-ruby2_1
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.0.5
19
+ version: 1.0.4
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.5
26
+ version: 1.0.4
27
27
  description: Rubocop LTS - Chaos Reduction In a Bottle
28
28
  email:
29
29
  - peter.boling@gmail.com
@@ -46,10 +46,10 @@ licenses:
46
46
  - MIT
47
47
  metadata:
48
48
  homepage_uri: https://github.com/rubocop-lts/rubocop-lts
49
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v4.0.3
50
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v4.0.3/CHANGELOG.md
49
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v5.0.2
50
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v5.0.2/CHANGELOG.md
51
51
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
52
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/4.0.3
52
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/5.0.2
53
53
  wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
54
54
  rubygems_mfa_required: 'true'
55
55
  post_install_message:
@@ -60,10 +60,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: 2.0.0
63
+ version: 2.1.0
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
- version: '4.0'
66
+ version: '2.2'
67
67
  required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="