appraisal2-rubocop 0.2.2 → 0.2.3
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +14 -1
- data/CONTRIBUTING.md +4 -1
- data/MIT.md +21 -0
- data/lib/appraisal2/rubocop/version.rb +1 -1
- data.tar.gz.sig +1 -4
- metadata +15 -14
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f25860be06cbb8f2dc7f5b119d92e855a1317c1e4c1a611cbf210d72aef1a9bc
|
|
4
|
+
data.tar.gz: f25ecedb97212633371148ad18f13d08194339bc5e21463c2e2c412749da682b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce1b056220b5aeef3a8d9e8cf9e47871fa77d2d0a25fdb0077c9d7eda9e2f8a6e0b32f8dc1787b5d43da7921d2e6473711126691180a0d92cc103b05ebde17a1
|
|
7
|
+
data.tar.gz: d05a76d8b709501208699ac558a284ff41968e587899d0278167e7aa29ca98bdf4ab7537ad46a96e4b56755582838371c47573b1cdaa30dccb352dcc72cd1853
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [0.2.3] - 2026-07-01
|
|
34
|
+
|
|
35
|
+
- TAG: [v0.2.3][0.2.3t]
|
|
36
|
+
- COVERAGE: 96.15% -- 50/52 lines in 4 files
|
|
37
|
+
- BRANCH COVERAGE: 80.00% -- 8/10 branches in 4 files
|
|
38
|
+
- 20.00% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Package configured license files in gem release file lists.
|
|
43
|
+
|
|
33
44
|
## [0.2.2] - 2026-06-23
|
|
34
45
|
|
|
35
46
|
- TAG: [v0.2.2][0.2.2t]
|
|
@@ -100,7 +111,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
100
111
|
- Replaced the hardcoded local `appraisal2` Gemfile path with ENV-driven
|
|
101
112
|
`nomono` sibling workspace wiring.
|
|
102
113
|
|
|
103
|
-
[Unreleased]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.
|
|
114
|
+
[Unreleased]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.3...HEAD
|
|
115
|
+
[0.2.3]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.2...v0.2.3
|
|
116
|
+
[0.2.3t]: https://github.com/appraisal-rb/appraisal2-rubocop/releases/tag/v0.2.3
|
|
104
117
|
[0.2.2]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.1...v0.2.2
|
|
105
118
|
[0.2.2t]: https://github.com/appraisal-rb/appraisal2-rubocop/releases/tag/v0.2.2
|
|
106
119
|
[0.2.1]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.0...v0.2.1
|
data/CONTRIBUTING.md
CHANGED
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data/MIT.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
See [LICENSE.md](LICENSE.md) for the copyright notice.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data.tar.gz.sig
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
�
|
|
2
|
-
|���#ܺLPn��x^�lr���恄'
|
|
3
|
-
�Ƨ@(t%���0T���c��1E6$�5�fȓ]�0�#�3�h:{�g.���+ƽ��qYԌ�Z�]b%���\�9SbŌ>z[���\0L�����
|
|
4
|
-
Co��[ w���l���x�@�6���\
|
|
1
|
+
r�[hA��B�;5�> �S�߮a��0��ݫ�f�c��襦=�7�.{07c*�ܓ1J��T� �[E�?c��D(��Ox�)?n��_�t�����8�TG$��K����������M0Uϫ�n�Cn?;$�N��4�����Н�s�{H�}�>����_�L�m��Pa����B�@#����P��\�I�W�Q���\1D���QSc|Rڇ�ڛ�w���۞��)� 1!���]�@��TܡD�Mk�y�%�}}}2���:��_bG/�����A�Xj��S����wMs�q̙��N���wu_WN:$�/�{�~ ��m��]tN}<4(�[��Z�ꍩߵ>�פ,���Y�S��T��tgX����4f&��k���
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appraisal2-rubocop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -43,14 +43,14 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 3.1.
|
|
46
|
+
version: 3.1.4
|
|
47
47
|
type: :runtime
|
|
48
48
|
prerelease: false
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - ">="
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 3.1.
|
|
53
|
+
version: 3.1.4
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: rubocop
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -94,7 +94,7 @@ dependencies:
|
|
|
94
94
|
version: '2.2'
|
|
95
95
|
- - ">="
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: 2.2.
|
|
97
|
+
version: 2.2.25
|
|
98
98
|
type: :development
|
|
99
99
|
prerelease: false
|
|
100
100
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -104,7 +104,7 @@ dependencies:
|
|
|
104
104
|
version: '2.2'
|
|
105
105
|
- - ">="
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: 2.2.
|
|
107
|
+
version: 2.2.25
|
|
108
108
|
- !ruby/object:Gem::Dependency
|
|
109
109
|
name: bundler-audit
|
|
110
110
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -162,7 +162,7 @@ dependencies:
|
|
|
162
162
|
version: '2.0'
|
|
163
163
|
- - ">="
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: 2.0.
|
|
165
|
+
version: 2.0.9
|
|
166
166
|
type: :development
|
|
167
167
|
prerelease: false
|
|
168
168
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -172,7 +172,7 @@ dependencies:
|
|
|
172
172
|
version: '2.0'
|
|
173
173
|
- - ">="
|
|
174
174
|
- !ruby/object:Gem::Version
|
|
175
|
-
version: 2.0.
|
|
175
|
+
version: 2.0.9
|
|
176
176
|
- !ruby/object:Gem::Dependency
|
|
177
177
|
name: turbo_tests2
|
|
178
178
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -182,7 +182,7 @@ dependencies:
|
|
|
182
182
|
version: '3.1'
|
|
183
183
|
- - ">="
|
|
184
184
|
- !ruby/object:Gem::Version
|
|
185
|
-
version: 3.1.
|
|
185
|
+
version: 3.1.5
|
|
186
186
|
type: :development
|
|
187
187
|
prerelease: false
|
|
188
188
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -192,7 +192,7 @@ dependencies:
|
|
|
192
192
|
version: '3.1'
|
|
193
193
|
- - ">="
|
|
194
194
|
- !ruby/object:Gem::Version
|
|
195
|
-
version: 3.1.
|
|
195
|
+
version: 3.1.5
|
|
196
196
|
- !ruby/object:Gem::Dependency
|
|
197
197
|
name: ruby-progressbar
|
|
198
198
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -216,7 +216,7 @@ dependencies:
|
|
|
216
216
|
version: '1.0'
|
|
217
217
|
- - ">="
|
|
218
218
|
- !ruby/object:Gem::Version
|
|
219
|
-
version: 1.0.
|
|
219
|
+
version: 1.0.4
|
|
220
220
|
type: :development
|
|
221
221
|
prerelease: false
|
|
222
222
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -226,7 +226,7 @@ dependencies:
|
|
|
226
226
|
version: '1.0'
|
|
227
227
|
- - ">="
|
|
228
228
|
- !ruby/object:Gem::Version
|
|
229
|
-
version: 1.0.
|
|
229
|
+
version: 1.0.4
|
|
230
230
|
- !ruby/object:Gem::Dependency
|
|
231
231
|
name: gitmoji-regex
|
|
232
232
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -284,6 +284,7 @@ files:
|
|
|
284
284
|
- CONTRIBUTING.md
|
|
285
285
|
- FUNDING.md
|
|
286
286
|
- LICENSE.md
|
|
287
|
+
- MIT.md
|
|
287
288
|
- README.md
|
|
288
289
|
- RUBOCOP.md
|
|
289
290
|
- SECURITY.md
|
|
@@ -298,10 +299,10 @@ licenses:
|
|
|
298
299
|
- MIT
|
|
299
300
|
metadata:
|
|
300
301
|
homepage_uri: https://appraisal2-rubocop.galtzo.com
|
|
301
|
-
source_code_uri: https://github.com/appraisal-rb/appraisal2-rubocop/tree/v0.2.
|
|
302
|
-
changelog_uri: https://github.com/appraisal-rb/appraisal2-rubocop/blob/v0.2.
|
|
302
|
+
source_code_uri: https://github.com/appraisal-rb/appraisal2-rubocop/tree/v0.2.3
|
|
303
|
+
changelog_uri: https://github.com/appraisal-rb/appraisal2-rubocop/blob/v0.2.3/CHANGELOG.md
|
|
303
304
|
bug_tracker_uri: https://github.com/appraisal-rb/appraisal2-rubocop/issues
|
|
304
|
-
documentation_uri: https://www.rubydoc.info/gems/appraisal2-rubocop/0.2.
|
|
305
|
+
documentation_uri: https://www.rubydoc.info/gems/appraisal2-rubocop/0.2.3
|
|
305
306
|
funding_uri: https://github.com/sponsors/pboling
|
|
306
307
|
wiki_uri: https://github.com/appraisal-rb/appraisal2-rubocop/wiki
|
|
307
308
|
news_uri: https://www.railsbling.com/tags/appraisal2-rubocop
|
metadata.gz.sig
CHANGED
|
Binary file
|