standard-rubocop-lts 2.0.7 → 2.0.9
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 +30 -1
- data/CONTRIBUTING.md +4 -1
- data/lib/standard/rubocop/lts/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +10 -16
- 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: 43a81e12852f50d4220091b0d1ffb6a974ddd00b9004e884d39d12b2c1ee8216
|
|
4
|
+
data.tar.gz: 17d69b8367ef920676c85b7ddb0f41c365e6ec0503d77f9a8b83889d915c4edb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50eb020ac169d5b0dba9c184b801315745b651a8e5f1fd366c461ad7a94105f60b70d591c40261f2147bf5f987b9c9b700df2fb8ab84686cef630554349c3191
|
|
7
|
+
data.tar.gz: 54c986d8ad2180a1096681b1b8188946c99c6b6e23c3860c2bd1e6acfd5133e5aadaee612f9d82e3acbe7005a5e1866d9bd94f99e2896689d5acd97245b6a700
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,31 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.0.9] - 2026-06-29
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.9][2.0.9t]
|
|
36
|
+
- COVERAGE: 100.00% -- 19/19 lines in 4 files
|
|
37
|
+
- BRANCH COVERAGE: 0.00% -- 0/0 branches in 4 files
|
|
38
|
+
- 71.43% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Restored recursive packaging of `config/**/*.yml` without using a frozen
|
|
43
|
+
duplicate `spec.files` override, so `config/internal/*.yml` is included in
|
|
44
|
+
built gems and remains compatible with kettle-jem gemspec merging.
|
|
45
|
+
|
|
46
|
+
## [2.0.8] - 2026-06-28
|
|
47
|
+
|
|
48
|
+
- TAG: [v2.0.8][2.0.8t]
|
|
49
|
+
- COVERAGE: 100.00% -- 19/19 lines in 4 files
|
|
50
|
+
- BRANCH COVERAGE: 0.00% -- 0/0 branches in 4 files
|
|
51
|
+
- 71.43% documented
|
|
52
|
+
|
|
53
|
+
### Fixed
|
|
54
|
+
|
|
55
|
+
- Restored the gemspec `spec.files` declaration so packaged gems include the
|
|
56
|
+
intended public files and configuration payload.
|
|
57
|
+
|
|
33
58
|
## [2.0.7] - 2026-06-25
|
|
34
59
|
|
|
35
60
|
- TAG: [v2.0.7][2.0.7t]
|
|
@@ -286,7 +311,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
286
311
|
|
|
287
312
|
- Initial release
|
|
288
313
|
|
|
289
|
-
[Unreleased]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.
|
|
314
|
+
[Unreleased]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.9...HEAD
|
|
315
|
+
[2.0.9]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.8...v2.0.9
|
|
316
|
+
[2.0.9t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.9
|
|
317
|
+
[2.0.8]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.7...v2.0.8
|
|
318
|
+
[2.0.8t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.8
|
|
290
319
|
[2.0.7]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.5...v2.0.7
|
|
291
320
|
[2.0.7t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.7
|
|
292
321
|
[2.0.5]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.4...v2.0.5
|
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.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: standard-rubocop-lts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -126,7 +126,7 @@ dependencies:
|
|
|
126
126
|
version: '2.2'
|
|
127
127
|
- - ">="
|
|
128
128
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: 2.2.
|
|
129
|
+
version: 2.2.23
|
|
130
130
|
type: :development
|
|
131
131
|
prerelease: false
|
|
132
132
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -136,7 +136,7 @@ dependencies:
|
|
|
136
136
|
version: '2.2'
|
|
137
137
|
- - ">="
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 2.2.
|
|
139
|
+
version: 2.2.23
|
|
140
140
|
- !ruby/object:Gem::Dependency
|
|
141
141
|
name: bundler-audit
|
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -157,20 +157,14 @@ dependencies:
|
|
|
157
157
|
requirements:
|
|
158
158
|
- - "~>"
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version: '13.
|
|
161
|
-
- - ">="
|
|
162
|
-
- !ruby/object:Gem::Version
|
|
163
|
-
version: 13.4.2
|
|
160
|
+
version: '13.0'
|
|
164
161
|
type: :development
|
|
165
162
|
prerelease: false
|
|
166
163
|
version_requirements: !ruby/object:Gem::Requirement
|
|
167
164
|
requirements:
|
|
168
165
|
- - "~>"
|
|
169
166
|
- !ruby/object:Gem::Version
|
|
170
|
-
version: '13.
|
|
171
|
-
- - ">="
|
|
172
|
-
- !ruby/object:Gem::Version
|
|
173
|
-
version: 13.4.2
|
|
167
|
+
version: '13.0'
|
|
174
168
|
- !ruby/object:Gem::Dependency
|
|
175
169
|
name: require_bench
|
|
176
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -220,7 +214,7 @@ dependencies:
|
|
|
220
214
|
version: '2.0'
|
|
221
215
|
- - ">="
|
|
222
216
|
- !ruby/object:Gem::Version
|
|
223
|
-
version: 2.0.
|
|
217
|
+
version: 2.0.8
|
|
224
218
|
type: :development
|
|
225
219
|
prerelease: false
|
|
226
220
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -230,7 +224,7 @@ dependencies:
|
|
|
230
224
|
version: '2.0'
|
|
231
225
|
- - ">="
|
|
232
226
|
- !ruby/object:Gem::Version
|
|
233
|
-
version: 2.0.
|
|
227
|
+
version: 2.0.8
|
|
234
228
|
- !ruby/object:Gem::Dependency
|
|
235
229
|
name: turbo_tests2
|
|
236
230
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -538,10 +532,10 @@ licenses:
|
|
|
538
532
|
- MIT
|
|
539
533
|
metadata:
|
|
540
534
|
homepage_uri: https://standard-rubocop-lts.galtzo.com
|
|
541
|
-
source_code_uri: https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.
|
|
542
|
-
changelog_uri: https://github.com/rubocop-lts/standard-rubocop-lts/blob/v2.0.
|
|
535
|
+
source_code_uri: https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.9
|
|
536
|
+
changelog_uri: https://github.com/rubocop-lts/standard-rubocop-lts/blob/v2.0.9/CHANGELOG.md
|
|
543
537
|
bug_tracker_uri: https://github.com/rubocop-lts/standard-rubocop-lts/issues
|
|
544
|
-
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/2.0.
|
|
538
|
+
documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/2.0.9
|
|
545
539
|
funding_uri: https://github.com/sponsors/pboling
|
|
546
540
|
wiki_uri: https://github.com/rubocop-lts/standard-rubocop-lts/wiki
|
|
547
541
|
news_uri: https://www.railsbling.com/tags/standard-rubocop-lts
|
metadata.gz.sig
CHANGED
|
Binary file
|