rubocop-ruby1_9 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +26 -5
- data/lib/rubocop/ruby1_9/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 31fff4a1a4fac9e1548c2ff0f72681dfc33c58689e91237a002ac158f6d9f620
|
|
4
|
+
data.tar.gz: 605ac2385e5e75cfe8515c4d33d01ac71d5a39e941c2f43bad78a92c60986fe0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3c161a19166348b4317f6f23f0a878c110a58a3eefe1bf8b21770a382ca18531e11a56c1e7583b1609c7af61f30b2dde980bd3ee56bf5e0c46c0f137e734721
|
|
7
|
+
data.tar.gz: 9858ea30fb00c67edb3b2e81bb8cb5fbddfcd2a883543fd50f8eaccd0272ef9745c477f7e6d481d23211c594ad7aeb7ee49fece86be0c5301c9a5f7769136378
|
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.4] 2022-05-23
|
|
17
|
+
### Fixed
|
|
18
|
+
- Ship rubocop-ruby1_8.yml with the gem
|
|
19
|
+
|
|
16
20
|
## [1.0.3] 2022-05-22
|
|
17
21
|
### Added
|
|
18
22
|
* Better documentation
|
|
@@ -37,7 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
37
41
|
### Added
|
|
38
42
|
* Initial release
|
|
39
43
|
|
|
40
|
-
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.
|
|
44
|
+
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.4...HEAD
|
|
45
|
+
[1.0.4]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.3...v1.0.4
|
|
41
46
|
[1.0.3]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.2...v1.0.3
|
|
42
47
|
[1.0.2]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.1...v1.0.2
|
|
43
48
|
[1.0.1]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v1.0.0...v1.0.1
|
data/README.md
CHANGED
|
@@ -80,7 +80,7 @@ official [compatibility matrix][rubocop-matrix] for `rubocop`.
|
|
|
80
80
|
[what1_8]: https://github.com/rubocop-lts/rubocop-ruby1_9#what-about-ruby-18
|
|
81
81
|
[rubocop-matrix]: https://github.com/rubocop/rubocop/blob/master/docs/modules/ROOT/pages/compatibility.adoc#support-matrix
|
|
82
82
|
|
|
83
|
-
## Supporting Ruby v1... in 2022?
|
|
83
|
+
## 📼 Supporting Ruby v1... in 2022?
|
|
84
84
|
|
|
85
85
|
Many gems, and many of those among the most popular gems in all of Ruby-land (e.g. [rspec](https://rubygems.org/gems/rspec/versions/3.11.0), [os](https://rubygems.org/gems/os)) still do not specify a `required_ruby_version`, or they list it as `>= 0`.
|
|
86
86
|
|
|
@@ -164,7 +164,7 @@ If you want to use this you'll have to upgrade to Ruby >= 2.0 and use the approp
|
|
|
164
164
|
|
|
165
165
|
## NewCops: enable
|
|
166
166
|
|
|
167
|
-
Commented out! Setting does not exist in
|
|
167
|
+
Commented out! Setting does not exist in very old versions of rubocop that work with Ruby < 2.4.
|
|
168
168
|
|
|
169
169
|
If you want to use this you'll have to upgrade to Ruby >= 2.4 and use the appropriate sibling gem, e.g. [`rubocop-ruby2_4`][2-4].
|
|
170
170
|
|
|
@@ -212,7 +212,7 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
212
212
|
|
|
213
213
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
214
214
|
|
|
215
|
-
##
|
|
215
|
+
## ⚡️ Contributing
|
|
216
216
|
|
|
217
217
|
See [CONTRIBUTING.md][contributing]
|
|
218
218
|
|
|
@@ -228,15 +228,36 @@ The gem is available as open source under the terms of
|
|
|
228
228
|
the [MIT License][license] [][license-ref].
|
|
229
229
|
See [LICENSE][license] for the official [Copyright Notice][copyright-notice-explainer].
|
|
230
230
|
|
|
231
|
+
<details>
|
|
232
|
+
<summary>Project Logos (rubocop-ruby3_1)</summary>
|
|
233
|
+
|
|
234
|
+
See [docs/images/logo/README.txt][project-logos]
|
|
235
|
+
</details>
|
|
236
|
+
|
|
237
|
+
<details>
|
|
238
|
+
<summary>Organization Logo (rubocop-semver)</summary>
|
|
239
|
+
|
|
240
|
+
Author: [Yusuf Evli][org-logo-author]
|
|
241
|
+
Source: [Unsplash][org-logo-source]
|
|
242
|
+
License: [Unsplash License][org-logo-license]
|
|
243
|
+
</details>
|
|
244
|
+
|
|
245
|
+
[project-logos]: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/main/docs/images/logo/README.txt
|
|
246
|
+
[org-logo-author]: https://unsplash.com/@yusufevli
|
|
247
|
+
[org-logo-source]: https://unsplash.com/photos/yaSLNLtKRIU
|
|
248
|
+
[org-logo-license]: https://unsplash.com/license
|
|
249
|
+
|
|
250
|
+
### © Copyright
|
|
251
|
+
|
|
231
252
|
* Copyright (c) 2022 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
|
232
253
|
|
|
233
254
|
[copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
234
255
|
|
|
235
|
-
##
|
|
256
|
+
## 🤝 Code of Conduct
|
|
236
257
|
|
|
237
258
|
Everyone interacting in the Rubocop::Ruby19 project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rubocop-lts/rubocop-ruby1_9/blob/main/CODE_OF_CONDUCT.md).
|
|
238
259
|
|
|
239
|
-
## Versioning
|
|
260
|
+
## 📌 Versioning
|
|
240
261
|
|
|
241
262
|
This library aims to adhere to [Semantic Versioning 2.0.0][semver]. Violations of this scheme should be reported as
|
|
242
263
|
bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, a new version should be
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-ruby1_9
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -63,10 +63,10 @@ licenses:
|
|
|
63
63
|
- MIT
|
|
64
64
|
metadata:
|
|
65
65
|
homepage_uri: https://github.com/rubocop-lts/rubocop-ruby1_9
|
|
66
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v1.0.
|
|
67
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v1.0.
|
|
66
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v1.0.4
|
|
67
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v1.0.4/CHANGELOG.md
|
|
68
68
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/issues
|
|
69
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.
|
|
69
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.4
|
|
70
70
|
wiki_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/wiki
|
|
71
71
|
rubygems_mfa_required: 'true'
|
|
72
72
|
post_install_message:
|