rubocop-ruby2_5 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7695eaf1bd585fdabd5aac6f2b2019a2ea20c08402028a89c662b6d1411c9997
4
- data.tar.gz: e676b5a72d03d55ca8e01b08511d14ffd129ee1b487f0223de0361c0b41fc152
3
+ metadata.gz: f7ea1cbcf6dc135c36a1092424694e6344f0b0da746ba0f35408a0952d8d6188
4
+ data.tar.gz: 86d0f87d5382e8115da65fd06f396614911e868b3c82461758a54ac1a7c53e1e
5
5
  SHA512:
6
- metadata.gz: 74593f7e59d811706f9a885f8e5956d147b753e9565b4f7d9ea1a7af90e56b7f35b8c307b2ac0b69f045d64dc442352f5c9415c6498989a2df6fd02da4e41533
7
- data.tar.gz: 36d4980fbc065d9c37bcdd1fea53e987a1b062641c28860d3f6fd9599b1163e088322d7dde618195124281ea158aae07b873ed7d1f3bb731b765db959dccc7cf
6
+ metadata.gz: 913f7c8fafda475826256b3aa3543e535dd02d7988d5b20464a707cf6ddb3170a9554081b02db164bbdfb118091dd744a2009774c94b0fbbd78840d84f237135
7
+ data.tar.gz: d079db7a7725524987ac4adb8f516d88aa629e2428fe7863e8ca644a9becd9dca03c0393b52fe95f304e080e6a36c6fe611762f938fef28214a6f5a040f2b22d
data/CHANGELOG.md CHANGED
@@ -13,7 +13,19 @@ 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-04-30
16
+ ## [1.0.1] 2022-05-02
17
+ ### Added
18
+ * Documentation
19
+
20
+ ### Changed
21
+ * Lock rubocop dependency at 1.28.2; next version drops Ruby 2.5 support
22
+ - https://github.com/rubocop/rubocop/pull/10577
23
+
24
+ ### Fixed
25
+
26
+ ### Removed
27
+
28
+ ## [1.0.0] 2022-05-01
17
29
  ### Added
18
30
  * Initial release
19
31
 
@@ -23,5 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23
35
 
24
36
  ### Removed
25
37
 
26
- [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_5/compare/.v1.0.0...HEAD
38
+ [Unreleased]: https://github.com/rubocop-semver/rubocop-ruby2_5/compare/v1.0.1...HEAD
39
+ [1.0.1]: https://github.com/rubocop-semver/rubocop-ruby2_5/compare/v1.0.0...v1.0.1
27
40
  [1.0.0]: https://github.com/rubocop-semver/rubocop-ruby2_5/compare/78b4f8131d931354f76d4025ab0517fc9792fed2...v1.0.0
data/README.md CHANGED
@@ -40,7 +40,7 @@ a [SemVer compliant](https://semver.org/) (Semantic Versioning) way that aligns
40
40
  compatible/supported Ruby version.
41
41
 
42
42
  Adding this gem will facilitate the best practice of adding a `~> ` version constrained `rubocop` dependency, while
43
- minimiszing the risk of a rubocop minor / patch upgrade breaking the build. See the
43
+ minimizing the risk of a rubocop minor / patch upgrade breaking the build. See the
44
44
  official [compatibility matrix](https://github.com/rubocop/rubocop/blob/master/docs/modules/ROOT/pages/compatibility.adoc#support-matrix) (Rubocop documentation)
45
45
 
46
46
  ## Stable
@@ -61,7 +61,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
61
61
 
62
62
  The following is optional. We'll discuss why you might want to do this after you see what it does.
63
63
 
64
- Add to the top of your project's RuboCop configuration file:
64
+ Add to the top of your project's `.rubocop.yml` configuration file:
65
65
 
66
66
  ```yaml
67
67
  inherit_gem:
@@ -111,6 +111,27 @@ The gem is available as open source under the terms of
111
111
  the [MIT License][license] [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)][license-ref].
112
112
  See [LICENSE][license] for the official [Copyright Notice][copyright-notice-explainer].
113
113
 
114
+ <details>
115
+ <summary>Project Logos (rubocop-ruby2_5)</summary>
116
+
117
+ See [docs/images/logo/README.txt][project-logos]
118
+ </details>
119
+
120
+ <details>
121
+ <summary>Organization Logo (rubocop-semver)</summary>
122
+
123
+ Author: [Yusuf Evli][org-logo-author]
124
+ Source: [Unsplash][org-logo-source]
125
+ License: [Unsplash License][org-logo-license]
126
+ </details>
127
+
128
+ [project-logos]: https://github.com/rubocop-semver/rubocop-ruby2_5/blob/main/docs/images/logo/README.txt
129
+ [org-logo-author]: https://unsplash.com/@yusufevli
130
+ [org-logo-source]: https://unsplash.com/photos/yaSLNLtKRIU
131
+ [org-logo-license]: https://unsplash.com/license
132
+
133
+ ### Copyright
134
+
114
135
  * Copyright (c) 2022 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
115
136
 
116
137
  [copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -132,7 +153,7 @@ the [Pessimistic Version Constraint][pvc] with two digits of precision.
132
153
  For example:
133
154
 
134
155
  ```ruby
135
- spec.add_dependency "rubocop-ruby2_5", "~> 0.1"
156
+ spec.add_dependency "rubocop-ruby2_5", "~> 1.0"
136
157
  ```
137
158
 
138
159
  [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 Ruby25
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby2_5
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.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-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
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 1.28.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.28.2
27
27
  - !ruby/object:Gem::Dependency
@@ -75,10 +75,10 @@ licenses:
75
75
  - MIT
76
76
  metadata:
77
77
  homepage_uri: https://github.com/rubocop-semver/rubocop-ruby2_5
78
- source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_5/tree/v1.0.0
79
- changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_5/blob/v1.0.0/CHANGELOG.md
78
+ source_code_uri: https://github.com/rubocop-semver/rubocop-ruby2_5/tree/v1.0.1
79
+ changelog_uri: https://github.com/rubocop-semver/rubocop-ruby2_5/blob/v1.0.1/CHANGELOG.md
80
80
  bug_tracker_uri: https://github.com/rubocop-semver/rubocop-ruby2_5/issues
81
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_5/1.0.0
81
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby2_5/1.0.1
82
82
  wiki_uri: https://github.com/rubocop-semver/rubocop-ruby2_5/wiki
83
83
  rubygems_mfa_required: 'true'
84
84
  post_install_message: