standard-rubocop-lts 2.0.5 → 2.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53033285bf53ab6e80dbfa7cb21bac76160b919460ef3b7ccdc067d04941b710
4
- data.tar.gz: 1406049ffcd70df874bee3e1c0298f65a9381345917e12e1f3dd21477ea9f6de
3
+ metadata.gz: 43c676d7b889fcc95098ab44b5e2adb76fe52586839a56d3dbb210a5992e89fd
4
+ data.tar.gz: 7254006413a04cda458c8bc820418c13ff3af130bfb52b25e0c38b8981bb3aca
5
5
  SHA512:
6
- metadata.gz: 771d925112e79f198d220f620c6c2684811359cba9d16ce5289c0f7f6c911ad3472303f85df64d1b41af43d66a42b61353178580f5951688aed4897749f7e7fb
7
- data.tar.gz: 2ef6381045ab355ddcb3db539607fed979f6f56995bb9b7e2e378bef051d4d30ee896f4c846443778e4a45dd6764374c1298157e71c67eed492921494607c429
6
+ metadata.gz: 8a45af875c5da01a49b540058b05ae23f94f6c0207c91cb3378a6d247ce8f9e2ecb1b4a71ae7edd0fdf5458b968a847c3bd4ac3af3ec80736a9295bbbc19faaf
7
+ data.tar.gz: 268af36240344416a4de43ef76b774eee24f32d96539369002226b8635a0635e752ab71e14d3330b537f163b5d29031bb0135f40e0e95ac65774c67e3b1bd14f
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,30 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [2.0.7] - 2026-06-25
34
+
35
+ - TAG: [v2.0.7][2.0.7t]
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
+ ### Added
41
+
42
+ - Added support for JRuby 10.1 and TruffleRuby 34.0.
43
+
44
+ ### Changed
45
+
46
+ - Retemplated project metadata and CI/development automation with `kettle-jem` v7.0.0.
47
+
48
+ ### Fixed
49
+
50
+ - Folded the Dogfood RuboCop rules into the primary RuboCop config so normal
51
+ autocorrect owns generated-file style, and fixed license-check CI drift after
52
+ dependency updates.
53
+ - Added the Appraisal RuboCop formatter plugin to the templating bundle.
54
+ - Restored `docs/CNAME` so the generated documentation site keeps its custom domain.
55
+ - Corrected misspelled contact metadata to use `galtzo.com`.
56
+
33
57
  ## [2.0.5] - 2026-06-07
34
58
 
35
59
  - TAG: [v2.0.5][2.0.5t]
@@ -262,7 +286,9 @@ Please file a bug if you notice a violation of semantic versioning.
262
286
 
263
287
  - Initial release
264
288
 
265
- [Unreleased]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.5...HEAD
289
+ [Unreleased]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.7...HEAD
290
+ [2.0.7]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.5...v2.0.7
291
+ [2.0.7t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.7
266
292
  [2.0.5]: https://github.com/rubocop-lts/standard-rubocop-lts/compare/v2.0.4...v2.0.5
267
293
  [2.0.5t]: https://github.com/rubocop-lts/standard-rubocop-lts/releases/tag/v2.0.5
268
294
  [2.0.4]: https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/compare/v2.0.3...v2.0.4
data/CITATION.cff CHANGED
@@ -7,7 +7,7 @@ type: software
7
7
  authors:
8
8
  - given-names: "Peter H."
9
9
  family-names: "Boling"
10
- email: "floss@glatzo.com"
10
+ email: "floss@galtzo.com"
11
11
  affiliation: "galtzo.com"
12
12
  orcid: 'https://orcid.org/0009-0008-8519-441X'
13
13
  identifiers:
data/CONTRIBUTING.md CHANGED
@@ -109,14 +109,14 @@ Git diff driver setup
109
109
  - Git hosting forges generally ignore external diff drivers, so pull request views may still show raw textual diffs even when local `git diff` uses semantic drivers.
110
110
 
111
111
  ```console
112
- K_JEM_TEMPLATING=true bundle exec kettle-jem install
112
+ K_JEM_TEMPLATING=true kettle-jem install
113
113
  ```
114
114
 
115
115
  Troubleshooting Git diffs
116
116
  - Use `git diff --no-ext-diff` to compare against Git's built-in diff output.
117
117
  - Use `git diff --no-textconv` when a textconv projection obscures the raw file bytes you need to inspect.
118
118
  - If Git reports a missing `smorg-*` executable, rerun `bundle install` and the setup command above, then check `git config --local --get-regexp '^diff\.smorg-'`.
119
- - To remove managed local entries, run `K_JEM_TEMPLATING=true bundle exec kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
119
+ - To remove managed local entries, run `K_JEM_TEMPLATING=true kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
120
120
 
121
121
  For a quick starting point, this repository’s `mise.toml` defines the shared defaults, and `.env.local` can override them locally. Copy `.env.local.example` to `.env.local`, use `KEY=value` lines, and either activate `mise` in your shell or run commands through `mise exec -C /path/to/project -- ...`.
122
122
 
data/FUNDING.md CHANGED
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
6
6
 
7
7
  [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
8
8
 
9
- [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
9
+ [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
10
10
 
11
11
  [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
12
12
  [⛳liberapay]: https://liberapay.com/pboling/donate
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
16
16
  [🖇osc-sponsors-i]: https://opencollective.com/rubocop-lts/sponsors/badge.svg?style=flat
17
17
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
18
18
  [🖇sponsor]: https://github.com/sponsors/pboling
19
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
20
- [🖇polar]: https://polar.sh/pboling
21
19
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
22
20
  [🖇kofi]: https://ko-fi.com/pboling
23
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
24
- [🖇patreon]: https://patreon.com/galtzo
25
21
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
26
22
  [🖇buyme]: https://www.buymeacoffee.com/pboling
27
23
  [🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
data/README.md CHANGED
@@ -10,9 +10,9 @@
10
10
 
11
11
  `if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
12
12
 
13
- [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
13
+ [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
14
14
 
15
- <details>
15
+ <details markdown="1">
16
16
  <summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
17
17
 
18
18
  I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
@@ -44,9 +44,9 @@ Avoid bike-shedding, use [`rubocop-lts`][💎rlts] in every project, and let it
44
44
 
45
45
  | Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
46
46
  |-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
47
- | Works with JRuby | [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
48
- | Works with Truffle Ruby | [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
49
- | Works with MRI Ruby 4 | [![Ruby 4.0 Compat][💎ruby-4.0i]][🚎11-c-wf] [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
47
+ | Works with JRuby | [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
48
+ | Works with Truffle Ruby | [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
49
+ | Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
50
50
  | Works with MRI Ruby 3 | [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
51
51
  | Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼‍🏫expsup-upwork-img]][👨🏼‍🏫expsup-upwork] [![Get help from me on Codementor][👨🏼‍🏫expsup-codementor-img]][👨🏼‍🏫expsup-codementor] |
52
52
  | Source | [![Source on GitLab.com][📜src-gl-img]][📜src-gl] [![Source on CodeBerg.org][📜src-cb-img]][📜src-cb] [![Source on Github.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
@@ -64,9 +64,25 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
64
64
  may be higher than the gem's runtime compatibility floor when legacy Rubies are
65
65
  not practical for the current toolchain.
66
66
 
67
- | 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 and the color 💚 green 💚 |
68
- |------------------------------------------------|--------------------------------------------------------|
69
- | 👟 Check it out! | [github.com/appraisal-rb/appraisal2][💎appraisal2] ✨ |
67
+ <a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
68
+
69
+ The _amazing_ test matrix is powered by the kettle-dev stack.
70
+
71
+ <details markdown="1">
72
+ <summary>How kettle-dev manages complexity in tests</summary>
73
+
74
+ | Gem | Source | Role | Daily download rank |
75
+ |-----|--------|------|---------------------|
76
+ | [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [![Daily download rank for appraisal2](https://img.shields.io/gem/rd/appraisal2.svg?style=flat-square)](https://bestgems.org/gems/appraisal2) |
77
+ | [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [![Daily download rank for appraisal2-rubocop](https://img.shields.io/gem/rd/appraisal2-rubocop.svg?style=flat-square)](https://bestgems.org/gems/appraisal2-rubocop) |
78
+ | [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [![Daily download rank for kettle-dev](https://img.shields.io/gem/rd/kettle-dev.svg?style=flat-square)](https://bestgems.org/gems/kettle-dev) |
79
+ | [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [![Daily download rank for kettle-jem](https://img.shields.io/gem/rd/kettle-jem.svg?style=flat-square)](https://bestgems.org/gems/kettle-jem) |
80
+ | [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [![Daily download rank for kettle-soup-cover](https://img.shields.io/gem/rd/kettle-soup-cover.svg?style=flat-square)](https://bestgems.org/gems/kettle-soup-cover) |
81
+ | [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [![Daily download rank for kettle-test](https://img.shields.io/gem/rd/kettle-test.svg?style=flat-square)](https://bestgems.org/gems/kettle-test) |
82
+ | [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [![Daily download rank for rubocop-lts](https://img.shields.io/gem/rd/rubocop-lts.svg?style=flat-square)](https://bestgems.org/gems/rubocop-lts) |
83
+ | [turbo_tests2](https://bestgems.org/gems/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [![Daily download rank for turbo_tests2](https://img.shields.io/gem/rd/turbo_tests2.svg?style=flat-square)](https://bestgems.org/gems/turbo_tests2) |
84
+
85
+ </details>
70
86
 
71
87
  ### Federated DVCS
72
88
 
@@ -257,7 +273,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
257
273
  No sponsors yet. Be the first!
258
274
  <!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
259
275
 
260
- [kettle-readme-backers]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/exe/kettle-readme-backers
276
+ [kettle-readme-backers]: https://github.com/rubocop-lts/standard-rubocop-lts/blob/main/bin/kettle-readme-backers
261
277
 
262
278
  ### Another way to support open-source
263
279
 
@@ -269,7 +285,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
269
285
 
270
286
  **[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
271
287
 
272
- [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
288
+ [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
273
289
 
274
290
  ## 🔐 Security
275
291
 
@@ -315,7 +331,7 @@ Made with [contributors-img][🖐contrib-rocks].
315
331
 
316
332
  Also see GitLab Contributors: [https://gitlab.com/rubocop-lts/standard-rubocop-lts/-/graphs/main][🚎contributors-gl]
317
333
 
318
- <details>
334
+ <details markdown="1">
319
335
  <summary>⭐️ Star History</summary>
320
336
 
321
337
  <a href="https://star-history.com/rubocop-lts/standard-rubocop-lts&Date">
@@ -410,12 +426,8 @@ Thanks for RTFM. ☺️
410
426
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
411
427
  [🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
412
428
  [🖇sponsor]: https://github.com/sponsors/pboling
413
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
414
- [🖇polar]: https://polar.sh/pboling
415
429
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
416
430
  [🖇kofi]: https://ko-fi.com/pboling
417
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
418
- [🖇patreon]: https://patreon.com/galtzo
419
431
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
420
432
  [🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
421
433
  [🖇buyme]: https://www.buymeacoffee.com/pboling
@@ -496,8 +508,10 @@ Thanks for RTFM. ☺️
496
508
  [🚎ruby-3.2-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/ruby-3.2.yml
497
509
  [🚎ruby-3.3-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/ruby-3.3.yml
498
510
  [🚎ruby-3.4-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/ruby-3.4.yml
511
+ [🚎jruby-10.0-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/jruby-10.0.yml
499
512
  [🚎truby-24.2-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/truffleruby-24.2.yml
500
513
  [🚎truby-25.0-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/truffleruby-25.0.yml
514
+ [🚎truby-33.0-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/truffleruby-33.0.yml
501
515
  [🚎2-cov-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/coverage.yml
502
516
  [🚎2-cov-wfi]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/coverage.yml/badge.svg
503
517
  [🚎3-hd-wf]: https://github.com/rubocop-lts/standard-rubocop-lts/actions/workflows/heads.yml
@@ -521,12 +535,14 @@ Thanks for RTFM. ☺️
521
535
  [💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
522
536
  [💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
523
537
  [💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
524
- [💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
525
538
  [💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
526
539
  [💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
527
540
  [💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
528
541
  [💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
542
+ [💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
529
543
  [💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
544
+ [💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
545
+ [💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
530
546
  [💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
531
547
  [💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
532
548
  [🤝gh-issues]: https://github.com/rubocop-lts/standard-rubocop-lts/issues
@@ -563,7 +579,7 @@ Thanks for RTFM. ☺️
563
579
  [📄license-ref]: MIT.md
564
580
  [📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
565
581
  [📄license-compat]: https://www.apache.org/legal/resolved.html#category-a
566
- [📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-✓-259D6C.svg?style=flat&logo=Apache
582
+ [📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-%E2%9C%93-259D6C.svg?style=flat&logo=Apache
567
583
 
568
584
  [📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
569
585
  [📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
@@ -583,7 +599,7 @@ Thanks for RTFM. ☺️
583
599
  | Package | standard-rubocop-lts |
584
600
  | Description | Enables Ruby projects to more confidently support even the most finely-aged Rubies.<br>Part of the rubocop-lts family. |
585
601
  | Homepage | https://github.com/rubocop-lts/standard-rubocop-lts |
586
- | Source | https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.4 |
602
+ | Source | https://github.com/rubocop-lts/standard-rubocop-lts |
587
603
  | License | `MIT` |
588
- | Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/rubocop-lts, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/standard-rubocop-lts, https://www.buymeacoffee.com/pboling |
604
+ | Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/rubocop-lts, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/standard-rubocop-lts, https://www.buymeacoffee.com/pboling |
589
605
  <!-- kettle-jem:metadata:end -->
@@ -4,7 +4,7 @@ module Standard
4
4
  module Rubocop
5
5
  module Lts
6
6
  module Version
7
- VERSION = "2.0.5"
7
+ VERSION = "2.0.7"
8
8
  end
9
9
  VERSION = Version::VERSION # Traditional Constant Location
10
10
  end
@@ -2,7 +2,6 @@ module Standard
2
2
  module Rubocop
3
3
  module Lts
4
4
  module Version
5
- VERSION: String
6
5
  # See the writing guide of rbs: https://github.com/ruby/rbs#guides
7
6
  end
8
7
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard-rubocop-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.5
4
+ version: 2.0.7
5
5
  platform: ruby
6
6
  authors:
7
- - Peter Boling
7
+ - Peter H. Boling
8
8
  bindir: exe
9
9
  cert_chain:
10
10
  - |
@@ -106,7 +106,7 @@ dependencies:
106
106
  version: '1.1'
107
107
  - - ">="
108
108
  - !ruby/object:Gem::Version
109
- version: 1.1.11
109
+ version: 1.1.13
110
110
  type: :runtime
111
111
  prerelease: false
112
112
  version_requirements: !ruby/object:Gem::Requirement
@@ -116,27 +116,27 @@ dependencies:
116
116
  version: '1.1'
117
117
  - - ">="
118
118
  - !ruby/object:Gem::Version
119
- version: 1.1.11
119
+ version: 1.1.13
120
120
  - !ruby/object:Gem::Dependency
121
121
  name: kettle-dev
122
122
  requirement: !ruby/object:Gem::Requirement
123
123
  requirements:
124
124
  - - "~>"
125
125
  - !ruby/object:Gem::Version
126
- version: '2.1'
126
+ version: '2.2'
127
127
  - - ">="
128
128
  - !ruby/object:Gem::Version
129
- version: 2.1.1
129
+ version: 2.2.18
130
130
  type: :development
131
131
  prerelease: false
132
132
  version_requirements: !ruby/object:Gem::Requirement
133
133
  requirements:
134
134
  - - "~>"
135
135
  - !ruby/object:Gem::Version
136
- version: '2.1'
136
+ version: '2.2'
137
137
  - - ">="
138
138
  - !ruby/object:Gem::Version
139
- version: 2.1.1
139
+ version: 2.2.18
140
140
  - !ruby/object:Gem::Dependency
141
141
  name: bundler-audit
142
142
  requirement: !ruby/object:Gem::Requirement
@@ -200,7 +200,7 @@ dependencies:
200
200
  version: '3.1'
201
201
  - - ">="
202
202
  - !ruby/object:Gem::Version
203
- version: 3.1.1
203
+ version: 3.1.3
204
204
  type: :development
205
205
  prerelease: false
206
206
  version_requirements: !ruby/object:Gem::Requirement
@@ -210,7 +210,7 @@ dependencies:
210
210
  version: '3.1'
211
211
  - - ">="
212
212
  - !ruby/object:Gem::Version
213
- version: 3.1.1
213
+ version: 3.1.3
214
214
  - !ruby/object:Gem::Dependency
215
215
  name: kettle-test
216
216
  requirement: !ruby/object:Gem::Requirement
@@ -220,7 +220,7 @@ dependencies:
220
220
  version: '2.0'
221
221
  - - ">="
222
222
  - !ruby/object:Gem::Version
223
- version: 2.0.3
223
+ version: 2.0.7
224
224
  type: :development
225
225
  prerelease: false
226
226
  version_requirements: !ruby/object:Gem::Requirement
@@ -230,7 +230,7 @@ dependencies:
230
230
  version: '2.0'
231
231
  - - ">="
232
232
  - !ruby/object:Gem::Version
233
- version: 2.0.3
233
+ version: 2.0.7
234
234
  - !ruby/object:Gem::Dependency
235
235
  name: turbo_tests2
236
236
  requirement: !ruby/object:Gem::Requirement
@@ -240,7 +240,7 @@ dependencies:
240
240
  version: '3.1'
241
241
  - - ">="
242
242
  - !ruby/object:Gem::Version
243
- version: 3.1.1
243
+ version: 3.1.5
244
244
  type: :development
245
245
  prerelease: false
246
246
  version_requirements: !ruby/object:Gem::Requirement
@@ -250,7 +250,7 @@ dependencies:
250
250
  version: '3.1'
251
251
  - - ">="
252
252
  - !ruby/object:Gem::Version
253
- version: 3.1.1
253
+ version: 3.1.5
254
254
  - !ruby/object:Gem::Dependency
255
255
  name: ruby-progressbar
256
256
  requirement: !ruby/object:Gem::Requirement
@@ -294,7 +294,7 @@ dependencies:
294
294
  version: '2.0'
295
295
  - - ">="
296
296
  - !ruby/object:Gem::Version
297
- version: 2.0.1
297
+ version: 2.0.3
298
298
  type: :development
299
299
  prerelease: false
300
300
  version_requirements: !ruby/object:Gem::Requirement
@@ -304,7 +304,7 @@ dependencies:
304
304
  version: '2.0'
305
305
  - - ">="
306
306
  - !ruby/object:Gem::Version
307
- version: 2.0.1
307
+ version: 2.0.3
308
308
  - !ruby/object:Gem::Dependency
309
309
  name: rspec
310
310
  requirement: !ruby/object:Gem::Requirement
@@ -469,7 +469,7 @@ description: |
469
469
  Enables Ruby projects to more confidently support even the most finely-aged Rubies.
470
470
  Part of the rubocop-lts family.
471
471
  email:
472
- - peter.boling@gmail.com
472
+ - floss@galtzo.com
473
473
  executables: []
474
474
  extensions: []
475
475
  extra_rdoc_files:
@@ -538,10 +538,10 @@ licenses:
538
538
  - MIT
539
539
  metadata:
540
540
  homepage_uri: https://standard-rubocop-lts.galtzo.com
541
- source_code_uri: https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.5
542
- changelog_uri: https://github.com/rubocop-lts/standard-rubocop-lts/blob/v2.0.5/CHANGELOG.md
541
+ source_code_uri: https://github.com/rubocop-lts/standard-rubocop-lts/tree/v2.0.7
542
+ changelog_uri: https://github.com/rubocop-lts/standard-rubocop-lts/blob/v2.0.7/CHANGELOG.md
543
543
  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.5
544
+ documentation_uri: https://www.rubydoc.info/gems/standard-rubocop-lts/2.0.7
545
545
  funding_uri: https://github.com/sponsors/pboling
546
546
  wiki_uri: https://github.com/rubocop-lts/standard-rubocop-lts/wiki
547
547
  news_uri: https://www.railsbling.com/tags/standard-rubocop-lts
metadata.gz.sig CHANGED
Binary file