rubocop-ruby3_1 1.1.3 → 1.1.4

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: 8b8ff7a9a5ef74ef2a0f9cb5c9b78094bdb1b0dc19507867ce157be8ccdca02a
4
- data.tar.gz: 6bcc9193f10a02a50eddd097508af6cafe5e323d613a5e7bbec08b17d77fdb52
3
+ metadata.gz: 4fa257b0093a53b0203bcb98151edc8af3800954fdd053a34de9d00406cfc11d
4
+ data.tar.gz: 3ac36971f55fcb57a14beef96c3820932c2746e10571ac7eac8815f01fa94654
5
5
  SHA512:
6
- metadata.gz: da987027f017b49a108dda7bbc2a413e178e41b5192b1398db985aaee496ecbe88a59679551a421fc6c287a76508b7dbbbf25f38d566b4e9bf9eaa524d485f5e
7
- data.tar.gz: 2fe59da79f094a0775162b90c06fa4e6337820145434c0c6fbd19d65f68893f353ba683ffe67c3a7198a22748753559c1cdaf5aa73e76022a15c062afcee0289
6
+ metadata.gz: 45fbd3d32dd9de42e9e3a0a6759e18fec397050dc6751c785d61e2c3f763dfb07e12684130e099cc55ae89466ba4d81bc9881b57d7e37540526ce042f3b7b934
7
+ data.tar.gz: 70b2e088be38ac4ecb05075fff2c6e790ad53e46963369c26d31de408a108ddd96853e8b5ace820d2aff9b4a2f8c5156572db148d932aab31099006768329481
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -10,11 +10,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Fixed
11
11
  ### Removed
12
12
 
13
+ ## [1.1.4] 2022-12-20
14
+ ### Fixed
15
+ * Do not require version.rb from gemspec so code coverage is accurate from both `rake` and `rspec`
16
+ * Typos in CHANGELOG & Documentation
17
+ ### Changed
18
+ * Minimum Code Coverage == 100%
19
+
13
20
  ## [1.1.3] 2022-12-18
14
21
  ### Added
15
22
  * Linting to fix CI build
16
23
  * Improved Rakefile for YARD docs
17
- * Improved Documentation related to Three Guarantees
24
+ * Documentation of Three Guarantees:
25
+ * `rubocop-ruby2_7` (this gem) will install a version of `rubocop` which will
26
+ **install** on (1), **run** on (2), and **analyze code** (3) intended to support any version of Ruby >= 2.7.
18
27
 
19
28
  ## [1.1.2] 2022-12-18
20
29
  ### Added
@@ -64,7 +73,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
64
73
  ### Added
65
74
  * Initial release
66
75
 
67
- [Unreleased]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.2...HEAD
76
+ [Unreleased]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.4...HEAD
77
+ [1.1.4]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.3...v1.1.4
78
+ [1.1.3]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.2...v1.1.3
68
79
  [1.1.2]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.1...v1.1.2
69
80
  [1.1.1]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.0...v1.1.1
70
81
  [1.1.0]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.0.6...v1.1.0
data/README.md CHANGED
@@ -265,7 +265,7 @@ the [Pessimistic Version Constraint][pvc] with two digits of precision.
265
265
  For example:
266
266
 
267
267
  ```ruby
268
- spec.add_dependency "rubocop-ruby3_1", "~> 1.0"
268
+ spec.add_dependency "rubocop-ruby3_1", "~> 1.1"
269
269
  ```
270
270
 
271
271
  [copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Ruby31
5
- VERSION = "1.1.3"
5
+ VERSION = "1.1.4"
6
6
  end
7
7
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby3_1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -36,7 +36,7 @@ cert_chain:
36
36
  gwGrEXGQGDZ0NIgBcmvMOqlXjkGQwQvugKycJ024z89+fz2332vdZIKTrSxJrXGk
37
37
  4/bR9A==
38
38
  -----END CERTIFICATE-----
39
- date: 2022-12-18 00:00:00.000000000 Z
39
+ date: 2022-12-20 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop
@@ -116,10 +116,10 @@ licenses:
116
116
  - MIT
117
117
  metadata:
118
118
  homepage_uri: https://github.com/rubocop-lts/rubocop-ruby3_1
119
- source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/tree/v1.1.3
120
- changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/v1.1.3/CHANGELOG.md
119
+ source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/tree/v1.1.4
120
+ changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/v1.1.4/CHANGELOG.md
121
121
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/issues
122
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_1/1.1.3
122
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_1/1.1.4
123
123
  funding_uri: https://liberapay.com/pboling
124
124
  wiki_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/wiki
125
125
  rubygems_mfa_required: 'true'
metadata.gz.sig CHANGED
Binary file