rubocop-ruby1_9 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -7
- data/README.md +3 -1
- data/lib/rubocop/ruby1_9/version.rb +1 -1
- data/rubocop.yml +0 -0
- data/sig/rubocop/ruby1_9.rbs +6 -0
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b9505e5e39ba9289a9e99c83964d1cc43b481cadc9855683494ab82e73ac655
|
4
|
+
data.tar.gz: 7d49d670355f6b87fb81d90af58a4f61937038e7d50714253752f67fbbcf7256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd70809e09c01696fd8bda31e0842fd70d572fee503bd0deccc81a5e2223eff645bef34262e8e424df2d41d54a3453948e53851c98b075c3990908527d120aec
|
7
|
+
data.tar.gz: a38a9366ae79597320d5ad919fa9a8ce8cf2e53c5ea4444a1181910d1f8e7a75c7fd2fa780f26224735b90a2a9eba37e01b09f3f7561e4ffce0410a8e8df458c
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
|
+
* Documentation
|
9
10
|
|
10
11
|
### Changed
|
11
12
|
|
@@ -13,15 +14,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
13
14
|
|
14
15
|
### Removed
|
15
16
|
|
17
|
+
## [1.0.1] 2022-05-03
|
18
|
+
### Fixed
|
19
|
+
* Added missing rubocop.yml for inherit_gem directive
|
20
|
+
|
16
21
|
## [1.0.0] 2022-05-01
|
17
22
|
### Added
|
18
23
|
* Initial release
|
19
24
|
|
20
|
-
|
21
|
-
|
22
|
-
### Fixed
|
23
|
-
|
24
|
-
### Removed
|
25
|
-
|
26
|
-
[Unreleased]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/.v1.0.0...HEAD
|
25
|
+
[Unreleased]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.1...HEAD
|
26
|
+
[1.0.1]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/v1.0.0...v1.0.1
|
27
27
|
[1.0.0]: https://github.com/rubocop-semver/rubocop-ruby1_9/compare/8fb0f104adf43c5a0e3487b390f91881f79e4d89...v1.0.0
|
data/README.md
CHANGED
@@ -81,13 +81,15 @@ inherit_gem:
|
|
81
81
|
This has the same effect as you declaring the following in your `.rubocop.yml`:
|
82
82
|
|
83
83
|
```yaml
|
84
|
-
AllCops:
|
84
|
+
# AllCops:
|
85
85
|
# The sibling gems for newer versions of Ruby support the TargetRubyVersion directive as soon as Rubocop adds it.
|
86
86
|
# TargetRubyVersion: 1.9
|
87
87
|
# The sibling gems for newer versions of Ruby support the NewCops directive as soon as Rubocop adds it.
|
88
88
|
# NewCops: enable
|
89
89
|
```
|
90
90
|
|
91
|
+
Everything is commented out! None of these settings exist in the very old version of rubocop that works with Ruby 1.9.
|
92
|
+
|
91
93
|
Let's talk about these settings.
|
92
94
|
|
93
95
|
## TargetRubyVersion
|
data/rubocop.yml
ADDED
File without changes
|
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.1
|
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-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -67,6 +67,8 @@ files:
|
|
67
67
|
- SECURITY.md
|
68
68
|
- lib/rubocop/ruby1_9.rb
|
69
69
|
- lib/rubocop/ruby1_9/version.rb
|
70
|
+
- rubocop.yml
|
71
|
+
- sig/rubocop/ruby1_9.rbs
|
70
72
|
- spec/config/rspec/rspec_core.rb
|
71
73
|
- spec/rubocop/ruby1_9_spec.rb
|
72
74
|
- spec/spec_helper.rb
|
@@ -75,10 +77,10 @@ licenses:
|
|
75
77
|
- MIT
|
76
78
|
metadata:
|
77
79
|
homepage_uri: https://github.com/rubocop-semver/rubocop-ruby1_9
|
78
|
-
source_code_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/tree/v1.0.
|
79
|
-
changelog_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/blob/v1.0.
|
80
|
+
source_code_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/tree/v1.0.1
|
81
|
+
changelog_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/blob/v1.0.1/CHANGELOG.md
|
80
82
|
bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/issues
|
81
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.
|
83
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/1.0.1
|
82
84
|
wiki_uri: https://github.com/rubocop-semver/rubocop-ruby1_9/wiki
|
83
85
|
rubygems_mfa_required: 'true'
|
84
86
|
post_install_message:
|