rubocop-ruby2_7 1.1.0 β 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +10 -1
- data/README.md +49 -36
- data/lib/rubocop/ruby2_7/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +5 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c578c1d05c141d9c4379bc7b36afdda7f31f8aa75b59be6aea316d9eef0b15aa
|
4
|
+
data.tar.gz: e1b1e5d51b8bed8006df03ffcb77500d75d467ecdef19b769268533ae1fffb5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fbf80c4f8b75b354a018b151e779346abc0433a5a2f5d2ca6897398fa833d0fd40b766d4e50e5d81daba2ac1f8c77f2a3b1a2059c5b2b24c50f893f64d96262
|
7
|
+
data.tar.gz: b3e39294096bb15240f4283e61587cd28a1078aea678994cb57d960a8810dab8e1319d01e0e7554f8f310a6d24778d7d2cfd9a3ec8a9578ddc76de36418c1906
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,14 @@ 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.1] 2022-12-20
|
14
|
+
### Fixed
|
15
|
+
* Documentation of Three Guarantees:
|
16
|
+
* `rubocop-ruby2_7` (this gem) will install a version of `rubocop` which will
|
17
|
+
**install** on (1), **run** on (2), and **analyze code** (3) intended to support any version of Ruby >= 2.7.
|
18
|
+
### Changed
|
19
|
+
* Minimum code coverage == 100%
|
20
|
+
|
13
21
|
## [1.1.0] 2022-12-19
|
14
22
|
### Added
|
15
23
|
* More Linting Rules
|
@@ -52,7 +60,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
52
60
|
### Added
|
53
61
|
* Initial release
|
54
62
|
|
55
|
-
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby2_7/compare/v1.1.
|
63
|
+
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby2_7/compare/v1.1.1...HEAD
|
64
|
+
[1.1.1]: https://github.com/rubocop-lts/rubocop-ruby2_7/compare/v1.1.0...v1.1.1
|
56
65
|
[1.1.0]: https://github.com/rubocop-lts/rubocop-ruby2_7/compare/v1.0.6...v1.1.0
|
57
66
|
[1.0.6]: https://github.com/rubocop-lts/rubocop-ruby2_7/compare/v1.0.5...v1.0.6
|
58
67
|
[1.0.5]: https://github.com/rubocop-lts/rubocop-ruby2_7/compare/v1.0.4...v1.0.5
|
data/README.md
CHANGED
@@ -101,50 +101,63 @@ The purpose of this gem is to constrain the `rubocop` dependency of a project in
|
|
101
101
|
a [SemVer compliant](https://semver.org/) (Semantic Versioning) way that aligns with the the desired minimum
|
102
102
|
compatible/supported Ruby version.
|
103
103
|
|
104
|
-
## Ruby Version Support
|
104
|
+
## Ruby Version Support
|
105
105
|
|
106
106
|
Adding this gem will facilitate the best practice of adding a `~> ` version constrained `rubocop` dependency, while
|
107
107
|
minimizing the risk of a rubocop minor / patch upgrade breaking the build. See the
|
108
108
|
official [compatibility matrix][rubocop-matrix] for `rubocop`.
|
109
109
|
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
[
|
132
|
-
[
|
133
|
-
[
|
134
|
-
[
|
135
|
-
[
|
136
|
-
[
|
137
|
-
[
|
138
|
-
[
|
139
|
-
|
140
|
-
[
|
141
|
-
[
|
142
|
-
[
|
110
|
+
### Three Guarantees
|
111
|
+
|
112
|
+
`rubocop-ruby3_0` (this gem) will install a version of `rubocop` which will
|
113
|
+
**install** on (1), **run** on (2), and **analyze code** (3) intended to support any version of Ruby >= 2.7.
|
114
|
+
|
115
|
+
Any change to any of those three abilities would require a major version bump.
|
116
|
+
Each [spring `rubocop` drops][rubocop-matrix] the ability to **install** and **run** `rubocop` on an EOL'd Ruby.
|
117
|
+
Eventually `rubocop` will drop the ability to **analyze code** intended to support an EOL'd Ruby,
|
118
|
+
as they already have for Ruby 1.8 and 1.9.
|
119
|
+
When the `rubocop` team makes any of these changes they typically only bump the minor version of ruby,
|
120
|
+
in violation of SemVer. This is a primary _raison dβΓͺtre_ for this project.
|
121
|
+
|
122
|
+
### A Gem Family
|
123
|
+
|
124
|
+
The `rubocop-lts` series of gems has a version supporting any version of Ruby you need.
|
125
|
+
They can be used as development dependencies for libraries or applications.
|
126
|
+
|
127
|
+
- [`rubocop-ruby1_9`][rr19]
|
128
|
+
- [Still supporting Ruby 1.8?][what1_8]
|
129
|
+
- [`rubocop-ruby2_0`][rr20]
|
130
|
+
- [`rubocop-ruby2_1`][rr21]
|
131
|
+
- [`rubocop-ruby2_2`][rr22]
|
132
|
+
- [`rubocop-ruby2_3`][rr23]
|
133
|
+
- [`rubocop-ruby2_4`][rr24]
|
134
|
+
- [`rubocop-ruby2_5`][rr25]
|
135
|
+
- [`rubocop-ruby2_6`][rr26]
|
136
|
+
- [`rubocop-ruby2_7`][rr27]
|
137
|
+
- [`rubocop-ruby3_0`][rr30]
|
138
|
+
- [`rubocop-ruby3_1`][rr31]
|
139
|
+
|
140
|
+
[rr19]: https://gitlab.com/rubocop-lts/rubocop-ruby1_9
|
141
|
+
[rr20]: https://gitlab.com/rubocop-lts/rubocop-ruby2_0
|
142
|
+
[rr21]: https://gitlab.com/rubocop-lts/rubocop-ruby2_1
|
143
|
+
[rr22]: https://gitlab.com/rubocop-lts/rubocop-ruby2_2
|
144
|
+
[rr23]: https://gitlab.com/rubocop-lts/rubocop-ruby2_3
|
145
|
+
[rr24]: https://gitlab.com/rubocop-lts/rubocop-ruby2_4
|
146
|
+
[rr25]: https://gitlab.com/rubocop-lts/rubocop-ruby2_5
|
147
|
+
[rr26]: https://gitlab.com/rubocop-lts/rubocop-ruby2_6
|
148
|
+
[rr27]: https://gitlab.com/rubocop-lts/rubocop-ruby2_7
|
149
|
+
[rr30]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0
|
150
|
+
[rr31]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1
|
151
|
+
[what1_8]: https://gitlab.com/rubocop-lts/rubocop-ruby1_9#what-about-ruby-18
|
143
152
|
[rubocop-matrix]: https://github.com/rubocop/rubocop/blob/master/docs/modules/ROOT/pages/compatibility.adoc#support-matrix
|
144
153
|
|
145
154
|
## πΏ Stable
|
146
155
|
|
147
|
-
All releases of this gem are stable releases.
|
156
|
+
All releases of this gem are stable releases.
|
157
|
+
We do not release new versions for every release of `rubocop`.
|
158
|
+
A typical release cycle for a gem in the `rubocop-lts` family is roughly every six months,
|
159
|
+
though eventually analysis support for an old version of Ruby will be dropped.
|
160
|
+
When that happens releases of the `rubocop-lts` gem for that version of Ruby will (mostly) cease.
|
148
161
|
|
149
162
|
## β¨ Installation
|
150
163
|
|
@@ -252,7 +265,7 @@ the [Pessimistic Version Constraint][pvc] with two digits of precision.
|
|
252
265
|
For example:
|
253
266
|
|
254
267
|
```ruby
|
255
|
-
spec.add_dependency "rubocop-ruby2_7", "~> 1.
|
268
|
+
spec.add_dependency "rubocop-ruby2_7", "~> 1.1"
|
256
269
|
```
|
257
270
|
|
258
271
|
[copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-ruby2_7
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
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-
|
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-ruby2_7
|
119
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby2_7/tree/v1.1.
|
120
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby2_7/blob/v1.1.
|
119
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby2_7/tree/v1.1.1
|
120
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby2_7/blob/v1.1.1/CHANGELOG.md
|
121
121
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby2_7/issues
|
122
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_7/1.1.
|
122
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_7/1.1.1
|
123
123
|
funding_uri: https://liberapay.com/pboling
|
124
124
|
wiki_uri: https://github.com/rubocop-lts/rubocop-ruby2_7/wiki
|
125
125
|
rubygems_mfa_required: 'true'
|
metadata.gz.sig
CHANGED
Binary file
|