rubocop-ruby2_0 1.0.0 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -6
- data/README.md +21 -0
- data/lib/rubocop/ruby2_0/version.rb +1 -1
- data/rubocop.yml +11 -0
- data/sig/rubocop/ruby2_0.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: ab54d9566148928d2e4f5ec1e510bb9eb3f0906f54cf851f50485b85feff1dfb
|
4
|
+
data.tar.gz: 1e7ff3288f03086479f515eef3128dc4b98ac282b83b6855308755c282bfc17f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 072e70c6586c31ff52d6ca9d6bd0b98011213090d66a4ad06018801d29447c41d05f2bbf858f7be0334a6a0fb7741a4ea3283cc9808fee12223004779c524e35
|
7
|
+
data.tar.gz: d991ec75c63ab387f731c58ae36c0e39937e3af604bb63453bac2b2c8ffb7dd71bb52b5cb0e9f6ef7d7b59e0adb233a46a0507bd8ab5b270ad874167b96db3b5
|
data/CHANGELOG.md
CHANGED
@@ -13,15 +13,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
13
13
|
|
14
14
|
### Removed
|
15
15
|
|
16
|
-
## [1.0.
|
16
|
+
## [1.0.3] 2022-05-03
|
17
17
|
### Added
|
18
|
-
*
|
19
|
-
|
20
|
-
### Changed
|
18
|
+
* Style/BracesAroundHashParameters configured to help transition to Ruby 2.7+
|
21
19
|
|
20
|
+
## [1.0.2] 2022-05-03
|
22
21
|
### Fixed
|
22
|
+
* Added missing rubocop.yml for inherit_gem directive
|
23
23
|
|
24
|
-
|
24
|
+
## [1.0.1] 2022-05-02
|
25
|
+
### Added
|
26
|
+
* Documentation
|
27
|
+
|
28
|
+
## [1.0.0] 2022-05-01
|
29
|
+
### Added
|
30
|
+
* Initial release
|
25
31
|
|
26
|
-
[Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_0/compare
|
32
|
+
[Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_0/compare/v1.0.3...HEAD
|
33
|
+
[1.0.3]: https://github.com/rubocop-semver/rubocop-ruby2_0/compare/v1.0.2...v1.0.3
|
34
|
+
[1.0.2]: https://github.com/rubocop-semver/rubocop-ruby2_0/compare/v1.0.1...v1.0.2
|
35
|
+
[1.0.1]: https://github.com/rubocop-semver/rubocop-ruby2_0/compare/v1.0.0...v1.0.1
|
27
36
|
[1.0.0]: https://github.com/rubocop-semver/rubocop-ruby2_0/compare/8fb0f104adf43c5a0e3487b390f91881f79e4d89...v1.0.0
|
data/README.md
CHANGED
@@ -122,6 +122,27 @@ The gem is available as open source under the terms of
|
|
122
122
|
the [MIT License][license] [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)][license-ref].
|
123
123
|
See [LICENSE][license] for the official [Copyright Notice][copyright-notice-explainer].
|
124
124
|
|
125
|
+
<details>
|
126
|
+
<summary>Project Logos (rubocop-ruby3_1)</summary>
|
127
|
+
|
128
|
+
See [docs/images/logo/README.txt][project-logos]
|
129
|
+
</details>
|
130
|
+
|
131
|
+
<details>
|
132
|
+
<summary>Organization Logo (rubocop-semver)</summary>
|
133
|
+
|
134
|
+
Author: [Yusuf Evli][org-logo-author]
|
135
|
+
Source: [Unsplash][org-logo-source]
|
136
|
+
License: [Unsplash License][org-logo-license]
|
137
|
+
</details>
|
138
|
+
|
139
|
+
[project-logos]: https://github.com/rubocop-semver/rubocop-ruby3_1/blob/main/docs/images/logo/README.txt
|
140
|
+
[org-logo-author]: https://unsplash.com/@yusufevli
|
141
|
+
[org-logo-source]: https://unsplash.com/photos/yaSLNLtKRIU
|
142
|
+
[org-logo-license]: https://unsplash.com/license
|
143
|
+
|
144
|
+
### Copyright
|
145
|
+
|
125
146
|
* Copyright (c) 2022 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
126
147
|
|
127
148
|
[copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/rubocop.yml
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 2.0
|
3
|
+
|
4
|
+
# Removed as of 0.80.0
|
5
|
+
# braces setting is for compatibility with Ruby 2.7+
|
6
|
+
# See:
|
7
|
+
# * https://github.com/rubocop/rubocop/issues/7641
|
8
|
+
# * https://github.com/rubocop/rubocop/pull/7643
|
9
|
+
Style/BracesAroundHashParameters:
|
10
|
+
Enabled: true
|
11
|
+
EnforcedStyle: context_dependent
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-ruby2_0
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
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/ruby2_0.rb
|
69
69
|
- lib/rubocop/ruby2_0/version.rb
|
70
|
+
- rubocop.yml
|
71
|
+
- sig/rubocop/ruby2_0.rbs
|
70
72
|
- spec/config/rspec/rspec_core.rb
|
71
73
|
- spec/rubocop/ruby2_0_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-ruby2_0
|
78
|
-
source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/tree/v1.0.
|
79
|
-
changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/blob/v1.0.
|
80
|
+
source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/tree/v1.0.3
|
81
|
+
changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/blob/v1.0.3/CHANGELOG.md
|
80
82
|
bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/issues
|
81
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_0/1.0.
|
83
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_0/1.0.3
|
82
84
|
wiki_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/wiki
|
83
85
|
rubygems_mfa_required: 'true'
|
84
86
|
post_install_message:
|