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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d3df5043a67ab5fd2a1826ae9ed048a512f3d6e40bdc34ade468f6afe2d1ff1
4
- data.tar.gz: 29f3ff8810ccc2913fa2bcf2e0fd769a83645cbd60431308e26def147f2919cf
3
+ metadata.gz: ab54d9566148928d2e4f5ec1e510bb9eb3f0906f54cf851f50485b85feff1dfb
4
+ data.tar.gz: 1e7ff3288f03086479f515eef3128dc4b98ac282b83b6855308755c282bfc17f
5
5
  SHA512:
6
- metadata.gz: a4b38d8e198111ea1a5f04cdf91e3d0e27cd2886269a4a508dc35279b79d4f15b9e4e4be3e5e0e01fc12b256fd316ac629830af03a570477ae1687de204df94f
7
- data.tar.gz: 017d0f20ab12b0643c33ba0e933f3b0fb98822965b7c3622dd6ee03f1f30071750ad1ea7aacffb5c6618ac03373aeb6729a3a51cf6e8a231eab1cb9e9f954e5c
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.0] 2022-05-01
16
+ ## [1.0.3] 2022-05-03
17
17
  ### Added
18
- * Initial release
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
- ### Removed
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/.v1.0.0...HEAD
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Ruby20
5
- VERSION = "1.0.0".freeze
5
+ VERSION = "1.0.3".freeze
6
6
  end
7
7
  end
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
@@ -0,0 +1,6 @@
1
+ module Rubocop
2
+ module Ruby20
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
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.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-01 00:00:00.000000000 Z
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.0
79
- changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_0/blob/v1.0.0/CHANGELOG.md
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.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: