appraisal2-rubocop 0.2.0 → 0.2.2

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: 1eba506136e2bc2f2303ae3ad6728392fac875231cb436ceee4426d2b88420d4
4
- data.tar.gz: 5e5deda5e798f5599b722ad67a3e1a6e8a1e0d279b63216c4f08daa202ecbe11
3
+ metadata.gz: 323541547896098b308c61abe8a1ae7388d97fc5722cb3f350f01bc73609da8f
4
+ data.tar.gz: 2a93b449d3a91d49d9d6f0e4950a02ba06329bc91bf06fa82520c13c246798f2
5
5
  SHA512:
6
- metadata.gz: 1aaefdba6b25900baabd180ac066d57002175b1738418926b3999d1dce0686350ebbcbf453957ad384cfc12f945827282e0337c3236e2a03fa46f79915f7f7df
7
- data.tar.gz: 4f73c877c3c74584007f77ae45b6f65d6647ec071360345816f9a45861068e14d7de90161963356202864e86a91bb743fea065e6edb9da3fcc8098ef1e39d760
6
+ metadata.gz: d1c202a1690339a0f6007685538684c352fea2669156aedae096aa119df50325027df74017322ed83ccbde6b9a67b49e1d5d0d017c765af49aeb76652f1f7c88
7
+ data.tar.gz: ef450e6c3cf201dcf7efbbc758d33de94d3537bd21a5470e975680765740e647e17467f4be904ac4329cef885f3e87771834aa57a029a0d50b279100e930cb95
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -28,10 +28,41 @@ Please file a bug if you notice a violation of semantic versioning.
28
28
 
29
29
  ### Fixed
30
30
 
31
+ ### Security
32
+
33
+ ## [0.2.2] - 2026-06-23
34
+
35
+ - TAG: [v0.2.2][0.2.2t]
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
+ ### 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
+ - Updated local Appraisal workspace path wiring to use the migrated
51
+ `kettle-dev` organization directory.
52
+
53
+ ## [0.2.1] - 2026-06-14
54
+
55
+ - TAG: [v0.2.1][0.2.1t]
56
+ - COVERAGE: 98.04% -- 50/51 lines in 3 files
57
+ - BRANCH COVERAGE: 80.00% -- 8/10 branches in 3 files
58
+ - 20.00% documented
59
+
60
+ ### Fixed
61
+
62
+ - Restored `docs/CNAME` so the generated documentation site keeps its custom domain.
31
63
  - Avoid loading the Ruby-3.2+-only style toolchain from `Appraisal.root.gemfile`
32
64
  on Ruby 3.1, fixing Ruby 3.1 CI dependency resolution.
33
-
34
- ### Security
65
+ - Corrected the gemspec public author email to use `floss@galtzo.com`.
35
66
 
36
67
  ## [0.2.0] - 2026-06-06
37
68
 
@@ -69,7 +100,11 @@ Please file a bug if you notice a violation of semantic versioning.
69
100
  - Replaced the hardcoded local `appraisal2` Gemfile path with ENV-driven
70
101
  `nomono` sibling workspace wiring.
71
102
 
72
- [Unreleased]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.0...HEAD
103
+ [Unreleased]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.2...HEAD
104
+ [0.2.2]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.1...v0.2.2
105
+ [0.2.2t]: https://github.com/appraisal-rb/appraisal2-rubocop/releases/tag/v0.2.2
106
+ [0.2.1]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.2.0...v0.2.1
107
+ [0.2.1t]: https://github.com/appraisal-rb/appraisal2-rubocop/releases/tag/v0.2.1
73
108
  [0.2.0]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/v0.1.0...v0.2.0
74
109
  [0.2.0t]: https://github.com/appraisal-rb/appraisal2-rubocop/releases/tag/v0.2.0
75
110
  [0.1.0]: https://github.com/appraisal-rb/appraisal2-rubocop/compare/93b1188d679a0d56f960a9cd85b48b2c1e2d1a9f...v0.1.0
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/appraisal-rb/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).
@@ -33,9 +33,9 @@ available only to the generator bundle.
33
33
 
34
34
  | Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
35
35
  |-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
36
- | Works with JRuby | [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
37
- | Works with Truffle Ruby | [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![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]|
38
- | 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]|
36
+ | Works with JRuby | [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![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]|
37
+ | Works with Truffle Ruby | [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![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]|
38
+ | Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
39
39
  | Works with MRI Ruby 3 | [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![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]|
40
40
  | 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] |
41
41
  | 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] |
@@ -53,9 +53,24 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
53
53
  may be higher than the gem's runtime compatibility floor when legacy Rubies are
54
54
  not practical for the current toolchain.
55
55
 
56
- | 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 and the color 💚 green 💚 |
57
- |------------------------------------------------|--------------------------------------------------------|
58
- | 👟 Check it out! | [github.com/appraisal-rb/appraisal2][💎appraisal2] ✨ |
56
+ <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>
57
+
58
+ The _amazing_ test matrix is powered by the kettle-dev stack.
59
+
60
+ <details markdown="1">
61
+ <summary>How kettle-dev manages complexity in tests</summary>
62
+
63
+ | Gem | Source | Role | Daily download rank |
64
+ |-----|--------|------|---------------------|
65
+ | [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) |
66
+ | [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) |
67
+ | [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) |
68
+ | [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) |
69
+ | [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) |
70
+ | [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) |
71
+ | [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) |
72
+
73
+ </details>
59
74
 
60
75
  ### Federated DVCS
61
76
 
@@ -163,9 +178,9 @@ rubocop --stdin path/to/generated.gemfile --autocorrect --stderr --format quiet
163
178
  | Package | appraisal2-rubocop |
164
179
  | Description | 💎 Appraisal2::Rubocop registers Appraisal2 generation hooks that run RuboCop against generated appraisal gemfiles. |
165
180
  | Homepage | https://github.com/appraisal-rb/appraisal2-rubocop |
166
- | Source | https://github.com/appraisal-rb/appraisal2-rubocop/tree/v0.2.0 |
181
+ | Source | https://github.com/appraisal-rb/appraisal2-rubocop |
167
182
  | License | `MIT` |
168
- | Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/appraisal-rb, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/appraisal2-rubocop, https://www.buymeacoffee.com/pboling |
183
+ | Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/appraisal-rb, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/appraisal2-rubocop, https://www.buymeacoffee.com/pboling |
169
184
  <!-- kettle-jem:metadata:end -->
170
185
  ## 🦷 FLOSS Funding
171
186
 
@@ -210,7 +225,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
210
225
  No sponsors yet. Be the first!
211
226
  <!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
212
227
 
213
- [kettle-readme-backers]: https://github.com/appraisal-rb/appraisal2-rubocop/blob/main/exe/kettle-readme-backers
228
+ [kettle-readme-backers]: https://github.com/appraisal-rb/appraisal2-rubocop/blob/main/bin/kettle-readme-backers
214
229
 
215
230
  ### Another way to support open-source
216
231
 
@@ -222,7 +237,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
222
237
 
223
238
  **[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
224
239
 
225
- [![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]
240
+ [![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]
226
241
 
227
242
  ## 🔐 Security
228
243
 
@@ -268,7 +283,7 @@ Made with [contributors-img][🖐contrib-rocks].
268
283
 
269
284
  Also see GitLab Contributors: [https://gitlab.com/appraisal-rb/appraisal2-rubocop/-/graphs/main][🚎contributors-gl]
270
285
 
271
- <details>
286
+ <details markdown="1">
272
287
  <summary>⭐️ Star History</summary>
273
288
 
274
289
  <a href="https://star-history.com/appraisal-rb/appraisal2-rubocop&Date">
@@ -363,12 +378,8 @@ Thanks for RTFM. ☺️
363
378
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
364
379
  [🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
365
380
  [🖇sponsor]: https://github.com/sponsors/pboling
366
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
367
- [🖇polar]: https://polar.sh/pboling
368
381
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
369
382
  [🖇kofi]: https://ko-fi.com/pboling
370
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
371
- [🖇patreon]: https://patreon.com/galtzo
372
383
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
373
384
  [🖇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
374
385
  [🖇buyme]: https://www.buymeacoffee.com/pboling
@@ -451,9 +462,11 @@ Thanks for RTFM. ☺️
451
462
  [🚎ruby-3.3-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/ruby-3.3.yml
452
463
  [🚎ruby-3.4-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/ruby-3.4.yml
453
464
  [🚎jruby-9.4-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/jruby-9.4.yml
465
+ [🚎jruby-10.0-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/jruby-10.0.yml
454
466
  [🚎truby-23.1-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/truffleruby-23.1.yml
455
467
  [🚎truby-24.2-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/truffleruby-24.2.yml
456
468
  [🚎truby-25.0-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/truffleruby-25.0.yml
469
+ [🚎truby-33.0-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/truffleruby-33.0.yml
457
470
  [🚎2-cov-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/coverage.yml
458
471
  [🚎2-cov-wfi]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/coverage.yml/badge.svg
459
472
  [🚎3-hd-wf]: https://github.com/appraisal-rb/appraisal2-rubocop/actions/workflows/heads.yml
@@ -478,14 +491,16 @@ Thanks for RTFM. ☺️
478
491
  [💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
479
492
  [💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
480
493
  [💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
481
- [💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
482
494
  [💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
483
495
  [💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
484
496
  [💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
485
497
  [💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
486
498
  [💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
499
+ [💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
487
500
  [💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
501
+ [💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
488
502
  [💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
503
+ [💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
489
504
  [💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
490
505
  [💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
491
506
  [🤝gh-issues]: https://github.com/appraisal-rb/appraisal2-rubocop/issues
@@ -514,7 +529,7 @@ Thanks for RTFM. ☺️
514
529
  [📌gitmoji]: https://gitmoji.dev
515
530
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
516
531
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
517
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.051-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
532
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.052-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
518
533
  [🔐security]: https://github.com/appraisal-rb/appraisal2-rubocop/blob/main/SECURITY.md
519
534
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
520
535
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -522,7 +537,7 @@ Thanks for RTFM. ☺️
522
537
  [📄license-ref]: MIT.md
523
538
  [📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
524
539
  [📄license-compat]: https://www.apache.org/legal/resolved.html#category-a
525
- [📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-✓-259D6C.svg?style=flat&logo=Apache
540
+ [📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-%E2%9C%93-259D6C.svg?style=flat&logo=Apache
526
541
 
527
542
  [📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
528
543
  [📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
@@ -3,7 +3,7 @@
3
3
  module Appraisal2
4
4
  module Rubocop
5
5
  module Version
6
- VERSION = "0.2.0"
6
+ VERSION = "0.2.2"
7
7
  end
8
8
  VERSION = Version::VERSION # Traditional Constant Location
9
9
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appraisal2-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
- - Peter Boling
7
+ - Peter H. Boling
8
8
  bindir: exe
9
9
  cert_chain:
10
10
  - |
@@ -74,7 +74,7 @@ dependencies:
74
74
  version: '1.1'
75
75
  - - ">="
76
76
  - !ruby/object:Gem::Version
77
- version: 1.1.10
77
+ version: 1.1.13
78
78
  type: :runtime
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
@@ -84,27 +84,27 @@ dependencies:
84
84
  version: '1.1'
85
85
  - - ">="
86
86
  - !ruby/object:Gem::Version
87
- version: 1.1.10
87
+ version: 1.1.13
88
88
  - !ruby/object:Gem::Dependency
89
89
  name: kettle-dev
90
90
  requirement: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - - "~>"
93
93
  - !ruby/object:Gem::Version
94
- version: '2.1'
94
+ version: '2.2'
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
- version: 2.1.0
97
+ version: 2.2.15
98
98
  type: :development
99
99
  prerelease: false
100
100
  version_requirements: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: '2.1'
104
+ version: '2.2'
105
105
  - - ">="
106
106
  - !ruby/object:Gem::Version
107
- version: 2.1.0
107
+ version: 2.2.15
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.3
165
+ version: 2.0.6
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.3
175
+ version: 2.0.6
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.1
185
+ version: 3.1.4
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.1
195
+ version: 3.1.4
196
196
  - !ruby/object:Gem::Dependency
197
197
  name: ruby-progressbar
198
198
  requirement: !ruby/object:Gem::Requirement
@@ -236,7 +236,7 @@ dependencies:
236
236
  version: '2.0'
237
237
  - - ">="
238
238
  - !ruby/object:Gem::Version
239
- version: 2.0.1
239
+ version: 2.0.3
240
240
  type: :development
241
241
  prerelease: false
242
242
  version_requirements: !ruby/object:Gem::Requirement
@@ -246,7 +246,7 @@ dependencies:
246
246
  version: '2.0'
247
247
  - - ">="
248
248
  - !ruby/object:Gem::Version
249
- version: 2.0.1
249
+ version: 2.0.3
250
250
  - !ruby/object:Gem::Dependency
251
251
  name: rspec
252
252
  requirement: !ruby/object:Gem::Requirement
@@ -264,7 +264,7 @@ dependencies:
264
264
  description: "\U0001F48E Appraisal2::Rubocop registers Appraisal2 generation hooks
265
265
  that run RuboCop against generated appraisal gemfiles."
266
266
  email:
267
- - galtzo@floss.com
267
+ - floss@galtzo.com
268
268
  executables: []
269
269
  extensions: []
270
270
  extra_rdoc_files:
@@ -298,10 +298,10 @@ licenses:
298
298
  - MIT
299
299
  metadata:
300
300
  homepage_uri: https://appraisal2-rubocop.galtzo.com
301
- source_code_uri: https://github.com/appraisal-rb/appraisal2-rubocop/tree/v0.2.0
302
- changelog_uri: https://github.com/appraisal-rb/appraisal2-rubocop/blob/v0.2.0/CHANGELOG.md
301
+ source_code_uri: https://github.com/appraisal-rb/appraisal2-rubocop/tree/v0.2.2
302
+ changelog_uri: https://github.com/appraisal-rb/appraisal2-rubocop/blob/v0.2.2/CHANGELOG.md
303
303
  bug_tracker_uri: https://github.com/appraisal-rb/appraisal2-rubocop/issues
304
- documentation_uri: https://www.rubydoc.info/gems/appraisal2-rubocop/0.2.0
304
+ documentation_uri: https://www.rubydoc.info/gems/appraisal2-rubocop/0.2.2
305
305
  funding_uri: https://github.com/sponsors/pboling
306
306
  wiki_uri: https://github.com/appraisal-rb/appraisal2-rubocop/wiki
307
307
  news_uri: https://www.railsbling.com/tags/appraisal2-rubocop
metadata.gz.sig CHANGED
Binary file