kettle-soup-cover 1.0.9 → 1.0.10

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: fc222614419aa8c54d068e8e03d9db52970855b23513ede5da00dbb21375430e
4
- data.tar.gz: bf156744a56f15b303d9f20c7f90e3731a92ace1b2e6120e9727990cdaa56e3f
3
+ metadata.gz: 9d261f9bfba53179b6efb788d225d8856a9c84cf59d100006b725849fbcd2642
4
+ data.tar.gz: a45573d36a905304612b14a4d7115904d9350c86210a4da9010e70bcfba00689
5
5
  SHA512:
6
- metadata.gz: 2562506b527763ebd861a48270d98e763f8271003c1ad3154bbd2f534180cbdd1b6654523355d6046b12e12735471d5d0b9f3fbe56851756fbc55ec64a82f16d
7
- data.tar.gz: 39f2aeb51829e290f524174457a089c3a20344c692c297871f92d9fe88041b3e90ab72fe7348ab878c892805cfb382984784f16eac631643454289f66594b0c7
6
+ metadata.gz: 49c8f710a0615ca7a445f2a270ec312a9b6eb7974094706a60d33e07bac4368903cc8803cad0195dd42ccb90b4bfc42d13f15eb2f80818d248be0493ffbcb03c
7
+ data.tar.gz: 6f1c2f65f153210551d7cab85baec9ca6faa732030df0c51bb9485c94a246b5ee7b91636ef2e25f3c5b50194d870812e26d5471ed5c6a81f15fb81350293ec19
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,15 +1,37 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ This file documents all notable changes to this project.
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+ Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ Versioning: [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
9
  ### Added
10
10
  ### Changed
11
- ### Fixed
11
+ ### Deprecated
12
12
  ### Removed
13
+ ### Fixed
14
+ ### Security
15
+
16
+ ## [1.0.10] - 2025-07-15
17
+ - COVERAGE: 93.43% -- 128/137 lines in 10 files
18
+ - BRANCH COVERAGE: 50.00% -- 16/32 branches in 10 files
19
+ - 11.11% documented
20
+ ### Added
21
+ - Add GitHub Pages site to badge info table
22
+ - YARD config, GFM compatible with relative file links
23
+ - Documentation site on GitHub Pages
24
+ - [kettle-soup-cover.galtzo.com](https://kettle-soup-cover.galtzo.com)
25
+ - Auto-assign issues in the GitHub issue tracker
26
+ ### Changed
27
+ - Updated `spec.homepage_uri` in gemspec to GitHub Pages YARD documentation site
28
+ - Updated contact email in gemspec to `floss@galtzo.com`
29
+ - Upgraded runtime dependency minimums:
30
+ - simplecov-cobertura v3.0.0
31
+ - simplecov-html v0.13.1
32
+ - simplecov-rcov v0.3.7
33
+ - simplecov-console v0.9.3
34
+ - version_gem v1.1.8
13
35
 
14
36
  ## [1.0.9] - 2025-05-20
15
37
  - COVERAGE: 93.43% -- 128/137 lines in 10 files
@@ -141,7 +163,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
141
163
  ## [0.1.0] - 2023-10-17
142
164
  - Initial release
143
165
 
144
- [Unreleased]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.8...HEAD
166
+ [Unreleased]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.10...HEAD
167
+ [1.0.10]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.9...v1.0.10
168
+ [1.0.9]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.8...v1.0.9
145
169
  [1.0.8]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.7...v1.0.8
146
170
  [1.0.7]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.6...v1.0.7
147
171
  [1.0.6]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.5...v1.0.6
data/CONTRIBUTING.md CHANGED
@@ -13,13 +13,15 @@ We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you m
13
13
 
14
14
  Simply follow these instructions:
15
15
 
16
- 1. Fork the repository
17
- 2. Create your feature branch (`git checkout -b my-new-feature`)
18
- 3. Make some fixes.
19
- 4. Commit your changes (`git commit -am 'Added some feature'`)
20
- 5. Push to the branch (`git push origin my-new-feature`)
21
- 6. Make sure to add tests for it. This is important, so it doesn't break in a future release.
22
- 7. Create new Pull Request.
16
+ 1. Join the Discord: [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
17
+ 2. Fork the repository
18
+ 3. Create your feature branch (`git checkout -b my-new-feature`)
19
+ 4. Make some fixes.
20
+ 5. Commit your changes (`git commit -am 'Added some feature'`)
21
+ 6. Push to the branch (`git push origin my-new-feature`)
22
+ 7. Make sure to add tests for it. This is important, so it doesn't break in a future release.
23
+ 8. Create new Pull Request.
24
+ 9. Announce it in the channel for this org in the [Discord][✉️discord-invite]!
23
25
 
24
26
  ## The Reek List
25
27
 
@@ -27,7 +29,7 @@ Take a look at the `reek` list which is the file called `REEK` and find somethin
27
29
 
28
30
  To refresh the `reek` list:
29
31
 
30
- ```bash
32
+ ```console
31
33
  bundle exec reek > REEK
32
34
  ```
33
35
 
@@ -35,7 +37,7 @@ bundle exec reek > REEK
35
37
 
36
38
  To run all tests
37
39
 
38
- ```bash
40
+ ```console
39
41
  bundle exec rake test
40
42
  ```
41
43
 
@@ -43,13 +45,13 @@ bundle exec rake test
43
45
 
44
46
  Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
45
47
 
46
- ```bash
48
+ ```console
47
49
  bundle exec rake
48
50
  ```
49
51
 
50
52
  Or just run the linter.
51
53
 
52
- ```bash
54
+ ```console
53
55
  bundle exec rake rubocop_gradual:autocorrect
54
56
  ```
55
57
 
@@ -113,3 +115,5 @@ NOTE: To build without signing the gem you must set `SKIP_GEM_SIGNING` to some v
113
115
  [💎stone_checksums]: https://github.com/pboling/stone_checksums
114
116
  [📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
115
117
  [📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
118
+ [✉️discord-invite]: https://discord.gg/3qme4XHNKN
119
+ [✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
data/README.md CHANGED
@@ -1,12 +1,18 @@
1
1
  <p align="center">
2
+ <a href="https://discord.gg/3qme4XHNKN" target="_blank" rel="noopener">
3
+ <img width="124px" src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/galtzo-floss-logos-original.svg?raw=true" alt="Galtzo.com Logo by Aboling0, CC BY-SA 4.0">
4
+ </a>
2
5
  <a href="https://kettle-rb.gitlab.io/" target="_blank" rel="noopener">
3
6
  <img height="120px" src="https://kettle-rb.gitlab.io/assets/img/logos/logo-name-optimized.png" alt="kettle-rb logo, Copyright (c) 2023 Peter Boling, CC BY-SA 4.0, see https://kettle-rb.gitlab.io/logos">
4
7
  </a>
8
+ <a href="https://www.ruby-lang.org/" target="_blank" rel="noopener">
9
+ <img width="124px" src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/ruby-logo-198px.svg?raw=true" alt="Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5">
10
+ </a>
5
11
  </p>
6
12
 
7
13
  # 🥘 Kettle::Soup::Cover
8
14
 
9
- [![Version][👽versioni]][👽version] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![Depfu][🔑depfui♻️]][🔑depfu] [![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov] [![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls] [![QLTY Test Coverage][🔑qlty-covi♻️]][🔑qlty-cov] [![QLTY Maintainability][🔑qlty-mnti♻️]][🔑qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Supported][🚎6-s-wfi]][🚎6-s-wf] [![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf] [![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![CodeQL][🖐codeQL-img]][🖐codeQL]
15
+ [![Version][👽versioni]][👽version] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![Depfu][🔑depfui♻️]][🔑depfu] [![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls] [![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov] [![QLTY Test Coverage][🔑qlty-covi♻️]][🔑qlty-cov] [![QLTY Maintainability][🔑qlty-mnti♻️]][🔑qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Supported][🚎6-s-wfi]][🚎6-s-wf] [![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf] [![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf]
10
16
 
11
17
  ---
12
18
 
@@ -42,7 +48,7 @@ and I got all of them working, at the same time together, or al la carte. Kum-ba
42
48
 
43
49
  A quick shot of 12-factor coverage power, straight to your brain:
44
50
 
45
- ```shell
51
+ ```console
46
52
  export K_SOUP_COV_DO=true # Means you want code coverage
47
53
  export K_SOUP_COV_FORMATTERS="html,tty" # Set to some slice of "html,xml,rcov,lcov,json,tty"
48
54
  export K_SOUP_COV_MIN_BRANCH=53 # Means you want to enforce X% branch coverage
@@ -68,14 +74,14 @@ where this library is considered a package of [SOUP](https://en.wikipedia.org/wi
68
74
  This tool leverages other tools to make hard things easier, but sometimes those other tools break...
69
75
  I'll try to track that here.
70
76
 
71
- | Format | Library | Status | Web | Circle<br/>CI | Git<br/>Lab | Travis<br/>CI | Jenkins<br/>X | Jenkins | Hudson | Semaphore | Bit<br/>Bucket | Team<br/>City | 🤓<br/>Nerds |
72
- |--------|----------------------------|-----------------------------------------------|-----|---------------|-------------|---------------|---------------|---------|--------|-----------|----------------|---------------|--------------|
73
- | `html` | `simplecov-html` | ✅ | ✅ | | | | | | | | | | ✅ |
74
- | `xml` | `simplecov-cobertura` | ⚠️ [works (with warnings); upvote #30!][sc30] | | | ✅ | | | ✅ | | | | | ✅ |
75
- | `rcov` | `simplecov-rcov` | ✅ | | | | | | | ✅ | | | | ✅ |
76
- | `lcov` | `simplecov-lcov` | ✅ | | ✅ | | ✅ | ✅ | | | ✅ | | ✅ | ✅ |
77
- | `json` | `simplecov_json_formatter` | ✅ | | ✅ | | ✅ | ✅ | | | | ✅ | | ✅ |
78
- | `tty` | `simplecov-console` | ✅ | | | | | | | | | | | ✅ |
77
+ | Format | Library | Status | Web | Circle<br/>CI | Git<br/>Lab | Travis<br/>CI | Jenkins<br/>X | Jenkins | Hudson | Semaphore | Bit<br/>Bucket | Team<br/>City | 🤓<br/>Nerds |
78
+ |--------|----------------------------|--------|-----|---------------|-------------|---------------|---------------|---------|--------|-----------|----------------|---------------|--------------|
79
+ | `html` | `simplecov-html` | ✅ | ✅ | | | | | | | | | | ✅ |
80
+ | `xml` | `simplecov-cobertura` | | | | ✅ | | | ✅ | | | | | ✅ |
81
+ | `rcov` | `simplecov-rcov` | ✅ | | | | | | | ✅ | | | | ✅ |
82
+ | `lcov` | `simplecov-lcov` | ✅ | | ✅ | | ✅ | ✅ | | | ✅ | | ✅ | ✅ |
83
+ | `json` | `simplecov_json_formatter` | ✅ | | ✅ | | ✅ | ✅ | | | | ✅ | | ✅ |
84
+ | `tty` | `simplecov-console` | ✅ | | | | | | | | | | | ✅ |
79
85
 
80
86
  If you find this working/not working different than above please open an issue / PR!
81
87
 
@@ -89,7 +95,7 @@ You'll have to configure them manually if you use them:
89
95
  * BuildKite's custom [simplecov extension][buildkite-ext]
90
96
  * GitHub Actions doesn't parse test output, but...
91
97
  * I configure my `coverage` workflow ([see example][example-cov-wf]) to upload coverage reports to SaaS services like:
92
- * [codecov.io][🔑codecov] (needs token for upload)
98
+ * [codecov.io][🔑codecov] (has tokenless OIDC option!)
93
99
  * [QLTY.sh](https://qlty.sh) (needs token for upload)
94
100
  * [coveralls.io][🔑coveralls]
95
101
  * This gem helps me configure my `coverage` workflow to use Github Actions designed to report coverage like:
@@ -99,7 +105,6 @@ You'll have to configure them manually if you use them:
99
105
 
100
106
  [buildkite-ext]: https://github.com/buildkite/simplecov-buildkite
101
107
  [example-cov-wf]: https://github.com/kettle-rb/kettle-soup-cover/blob/main/.github/workflows/coverage.yml
102
- [sc30]: https://github.com/dashingrocket/simplecov-cobertura/issues/30
103
108
 
104
109
  This library is based on ideas I originally introduced in the gem _[rspec-stubbed_env](https://github.com/pboling/rspec-stubbed_env)_.
105
110
 
@@ -110,7 +115,7 @@ This library is based on ideas I originally introduced in the gem _[rspec-stubbe
110
115
  | Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎4-lg-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎6-s-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎6-s-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎6-s-wf] [![Ruby 3.4 Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf] |
111
116
  | Works with MRI Ruby 2 | [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎7-us-wf] |
112
117
  | 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] |
113
- | Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![HEAD on RubyDoc.info][📜docs-head-rd-img]][🚎yard-head] [![BDFL Blog][🚂bdfl-blog-img]][🚂bdfl-blog] [![Wiki][📜wiki-img]][📜wiki] |
118
+ | Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![BDFL Blog][🚂bdfl-blog-img]][🚂bdfl-blog] [![Wiki][📜wiki-img]][📜wiki] |
114
119
  | Compliance | [![License: MIT][📄license-img]][📄license-ref] [![📄ilo-declaration-img]][📄ilo-declaration] [![Security Policy][🔐security-img]][🔐security] [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct] [![SemVer 2.0.0][📌semver-img]][📌semver] |
115
120
  | Style | [![Enforced Code Style Linter][💎rlts-img]][💎rlts] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog] [![Gitmoji Commits][📌gitmoji-img]][📌gitmoji] |
116
121
  | Support | [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite] [![Get help from me on Upwork][👨🏼‍🏫expsup-upwork-img]][👨🏼‍🏫expsup-upwork] [![Get help from me on Codementor][👨🏼‍🏫expsup-codementor-img]][👨🏼‍🏫expsup-codementor] |
@@ -136,13 +141,13 @@ by following the instructions below.
136
141
 
137
142
  Add my public key (if you haven’t already, expires 2045-04-29) as a trusted certificate:
138
143
 
139
- ```shell
144
+ ```console
140
145
  gem cert --add <(curl -Ls https://raw.github.com/kettle-rb/kettle-soup-cover/main/certs/pboling.pem)
141
146
  ```
142
147
 
143
148
  You only need to do that once. Then proceed to install with:
144
149
 
145
- ```shell
150
+ ```console
146
151
  gem install kettle-soup-cover -P MediumSecurity
147
152
  ```
148
153
 
@@ -152,7 +157,7 @@ This is necessary because not all of `kettle-soup-cover`’s dependencies are si
152
157
 
153
158
  If you want to up your security game full-time:
154
159
 
155
- ```shell
160
+ ```console
156
161
  bundle config set --global trust-policy MediumSecurity
157
162
  ```
158
163
 
@@ -208,7 +213,7 @@ See [Advanced Usage](#advanced-usage) below for more info,
208
213
  but the simplest thing is to run all the coverage things,
209
214
  which is configured by default on CI. To replicate that locally you could:
210
215
 
211
- ```shell
216
+ ```console
212
217
  CI=true bundle exec rake test # or whatever command you run for tests.
213
218
  ```
214
219
 
@@ -253,7 +258,7 @@ Most are self explanatory.
253
258
  I tried to follow POLS, the principle of least surprise, so they mostly _DWTFYT_.
254
259
  Want to help improve this documentation? PRs are easy!
255
260
 
256
- ```shell
261
+ ```console
257
262
  K_SOUP_COV_COMMAND_NAME
258
263
  K_SOUP_COV_DEBUG
259
264
  K_SOUP_COV_DIR
@@ -324,10 +329,6 @@ Repo: [marocchino/sticky-pull-request-comment][GHA-sprc-repo]
324
329
  continue-on-error: ${{ matrix.experimental != 'false' }}
325
330
  ```
326
331
 
327
- ### 🚀 Release Instructions
328
-
329
- See [CONTRIBUTING.md][🤝contributing].
330
-
331
332
  ## 🔐 Security
332
333
 
333
334
  See [SECURITY.md][🔐security].
@@ -342,14 +343,18 @@ We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you m
342
343
 
343
344
  See [CONTRIBUTING.md][🤝contributing] for more detailed instructions.
344
345
 
346
+ ### 🚀 Release Instructions
347
+
348
+ See [CONTRIBUTING.md][🤝contributing].
349
+
345
350
  ### Code Coverage
346
351
 
347
352
  [![Coverage Graph][🔑codecov-g♻️]][🔑codecov]
348
353
 
349
354
  ### 🪇 Code of Conduct
350
355
 
351
- Everyone interacting in this project's codebases, issue trackers,
352
- chat rooms and mailing lists is expected to follow the [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct].
356
+ Everyone interacting with this project's codebases, issue trackers,
357
+ chat rooms and mailing lists agrees to follow the [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct].
353
358
 
354
359
  ## 🌈 Contributors
355
360
 
@@ -404,37 +409,60 @@ For example:
404
409
  spec.add_dependency("kettle-soup-cover", "~> 1.0")
405
410
  ```
406
411
 
407
- See [CHANGELOG.md][📌changelog] for list of releases.
412
+ See [CHANGELOG.md][📌changelog] for a list of releases.
408
413
 
409
414
  ## 📄 License
410
415
 
411
416
  The gem is available as open source under the terms of
412
- the [MIT License](LICENSE.txt) [![License: MIT][📄license-img]][📄license-ref].
417
+ the [MIT License][📄license] [![License: MIT][📄license-img]][📄license-ref].
413
418
  See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright-notice-explainer].
414
419
 
415
420
  ### © Copyright
416
421
 
417
- <p>
418
- Copyright (c) 2023 - 2025 Peter H. Boling,
419
- <a href="https://railsbling.com">
420
- RailsBling.com
421
- <picture>
422
- <img alt="Rails Bling" height="20" src="https://railsbling.com/images/logos/RailsBling-TrainLogo.svg" />
423
- </picture>
424
- </a>
425
- </p>
422
+ <ul>
423
+ <li>
424
+ Copyright (c) 2023-2025 Peter H. Boling, of
425
+ <a href="https://discord.gg/3qme4XHNKN">
426
+ Galtzo.com
427
+ <picture>
428
+ <img src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/galtzo-floss-logos-wordless.svg?raw=true" alt="Galtzo.com Logo by Aboling0, CC BY-SA 4.0" width="24">
429
+ </picture>
430
+ </a>, and kettle-soup-cover contributors
431
+ </li>
432
+ </ul>
426
433
 
427
434
  ## 🤑 One more thing
428
435
 
429
- You made it to the bottom of the page,
430
- so perhaps you'll indulge me for another 20 seconds.
431
- I maintain many dozens of gems, including this one,
432
- because I want Ruby to be a great place for people to solve problems, big and small.
433
- Please consider supporting my efforts via the giant yellow link below,
434
- or one of the others at the head of this README.
436
+ Having arrived at the bottom of the page, please endure a final supplication.
437
+ The primary maintainer of this gem, Peter Boling, wants
438
+ Ruby to be a great place for people to solve problems, big and small.
439
+ Please consider supporting his efforts via the giant yellow link below,
440
+ or one of smaller ones, depending on button size preference.
435
441
 
436
442
  [![Buy me a latte][🖇buyme-img]][🖇buyme]
437
443
 
444
+ [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
445
+
446
+ P.S. If you need help️, or want to say thanks, 👇 Join the Discord.
447
+
448
+ [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
449
+
450
+ [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay
451
+ [⛳liberapay]: https://liberapay.com/pboling/donate
452
+ [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
453
+ [🖇sponsor]: https://github.com/sponsors/pboling
454
+ [🖇polar-img]: https://img.shields.io/badge/polar-donate-yellow.svg
455
+ [🖇polar]: https://polar.sh/pboling
456
+ [🖇kofi-img]: https://img.shields.io/badge/a_more_different_coffee-✓-yellow.svg
457
+ [🖇kofi]: https://ko-fi.com/O5O86SNP4
458
+ [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
459
+ [🖇patreon]: https://patreon.com/galtzo
460
+ [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
461
+ [🖇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
462
+ [🖇buyme]: https://www.buymeacoffee.com/pboling
463
+ [✉️discord-invite]: https://discord.gg/3qme4XHNKN
464
+ [✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
465
+
438
466
  [✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
439
467
  [⛳️gem-namespace]: https://github.com/kettle-rb/kettle-soup-cover
440
468
  [⛳️namespace-img]: https://img.shields.io/badge/namespace-Kettle%3A%3ASoup%3A%3ACover-brightgreen.svg?style=flat&logo=ruby&logoColor=white
@@ -480,7 +508,7 @@ or one of the others at the head of this README.
480
508
  [📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=Github&logoColor=green
481
509
  [📜src-gh]: https://github.com/kettle-rb/kettle-soup-cover
482
510
  [📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
483
- [📜docs-head-rd-img]: https://img.shields.io/badge/RubyDoc-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
511
+ [📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
484
512
  [📜wiki]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/wikis/home
485
513
  [📜wiki-img]: https://img.shields.io/badge/wiki-examples-943CD2.svg?style=for-the-badge&logo=Wiki&logoColor=white
486
514
  [👽dl-rank]: https://rubygems.org/gems/kettle-soup-cover
@@ -519,19 +547,6 @@ or one of the others at the head of this README.
519
547
  [🚎8-ho-wfi]: https://github.com/kettle-rb/kettle-soup-cover/actions/workflows/hoary.yml/badge.svg
520
548
  [🚎11-c-wf]: https://github.com/kettle-rb/kettle-soup-cover/actions/workflows/current.yml
521
549
  [🚎11-c-wfi]: https://github.com/kettle-rb/kettle-soup-cover/actions/workflows/current.yml/badge.svg
522
- [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay
523
- [⛳liberapay]: https://liberapay.com/pboling/donate
524
- [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
525
- [🖇sponsor]: https://github.com/sponsors/pboling
526
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-yellow.svg
527
- [🖇polar]: https://polar.sh/pboling
528
- [🖇kofi-img]: https://img.shields.io/badge/a_more_different_coffee-✓-yellow.svg
529
- [🖇kofi]: https://ko-fi.com/O5O86SNP4
530
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
531
- [🖇patreon]: https://patreon.com/galtzo
532
- [🖇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
533
- [🖇buyme]: https://www.buymeacoffee.com/pboling
534
- [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
535
550
  [💎ruby-2.7i]: https://img.shields.io/badge/Ruby-2.7-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
536
551
  [💎ruby-3.0i]: https://img.shields.io/badge/Ruby-3.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
537
552
  [💎ruby-3.1i]: https://img.shields.io/badge/Ruby-3.1-CC342D?style=for-the-badge&logo=ruby&logoColor=white
@@ -541,10 +556,10 @@ or one of the others at the head of this README.
541
556
  [💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
542
557
  [🤝gh-issues]: https://github.com/kettle-rb/kettle-soup-cover/issues
543
558
  [🤝gh-pulls]: https://github.com/kettle-rb/kettle-soup-cover/pulls
544
- [🤝gl-issues]: https://gitlab.com/oauth-xx/oauth2/-/issues
545
- [🤝gl-pulls]: https://gitlab.com/oauth-xx/oauth2/-/merge_requests
546
- [🤝cb-issues]: https://codeberg.org/oauth-xx/oauth2/issues
547
- [🤝cb-pulls]: https://codeberg.org/oauth-xx/oauth2/pulls
559
+ [🤝gl-issues]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/issues
560
+ [🤝gl-pulls]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/merge_requests
561
+ [🤝cb-issues]: https://codeberg.org/kettle-rb/kettle-soup-cover/issues
562
+ [🤝cb-pulls]: https://codeberg.org/kettle-rb/kettle-soup-cover/pulls
548
563
  [🤝cb-donate]: https://donate.codeberg.org/
549
564
  [🤝contributing]: CONTRIBUTING.md
550
565
  [🔑codecov-g♻️]: https://codecov.io/gh/kettle-rb/kettle-soup-cover/graphs/tree.svg?token=0X5VEW9USD
@@ -575,11 +590,9 @@ or one of the others at the head of this README.
575
590
  [📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
576
591
  [📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
577
592
  [🚎yard-current]: http://rubydoc.info/gems/kettle-soup-cover
578
- [🚎yard-head]: https://rubydoc.info/github/kettle-rb/kettle-soup-cover/main
593
+ [🚎yard-head]: https://kettle-soup-cover.galtzo.com
579
594
  [💎stone_checksums]: https://github.com/pboling/stone_checksums
580
595
  [💎SHA_checksums]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/main/checksums
581
596
  [💎rlts]: https://github.com/rubocop-lts/rubocop-lts
582
597
  [💎rlts-img]: https://img.shields.io/badge/code_style_%26_linting-rubocop--lts-34495e.svg?plastic&logo=ruby&logoColor=white
583
598
  [💎d-in-dvcs]: https://railsbling.com/posts/dvcs/put_the_d_in_dvcs/
584
- [✉️discord-invite]: https://discord.gg/3qme4XHNKN
585
- [✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
@@ -4,7 +4,7 @@ module Kettle
4
4
  module Soup
5
5
  module Cover
6
6
  module Version
7
- VERSION = "1.0.9"
7
+ VERSION = "1.0.10"
8
8
  end
9
9
  end
10
10
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-soup-cover
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -35,7 +35,7 @@ cert_chain:
35
35
  DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
36
36
  L9nRqA==
37
37
  -----END CERTIFICATE-----
38
- date: 2025-05-20 00:00:00.000000000 Z
38
+ date: 2025-07-15 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: version_gem
@@ -46,7 +46,7 @@ dependencies:
46
46
  version: '1.1'
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 1.1.7
49
+ version: 1.1.8
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
@@ -56,7 +56,7 @@ dependencies:
56
56
  version: '1.1'
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: 1.1.7
59
+ version: 1.1.8
60
60
  - !ruby/object:Gem::Dependency
61
61
  name: rake
62
62
  requirement: !ruby/object:Gem::Requirement
@@ -105,14 +105,14 @@ dependencies:
105
105
  requirements:
106
106
  - - "~>"
107
107
  - !ruby/object:Gem::Version
108
- version: '2.1'
108
+ version: '3.0'
109
109
  type: :runtime
110
110
  prerelease: false
111
111
  version_requirements: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - "~>"
114
114
  - !ruby/object:Gem::Version
115
- version: '2.1'
115
+ version: '3.0'
116
116
  - !ruby/object:Gem::Dependency
117
117
  name: simplecov-console
118
118
  requirement: !ruby/object:Gem::Requirement
@@ -122,7 +122,7 @@ dependencies:
122
122
  version: '0.9'
123
123
  - - ">="
124
124
  - !ruby/object:Gem::Version
125
- version: 0.9.1
125
+ version: 0.9.3
126
126
  type: :runtime
127
127
  prerelease: false
128
128
  version_requirements: !ruby/object:Gem::Requirement
@@ -132,21 +132,27 @@ dependencies:
132
132
  version: '0.9'
133
133
  - - ">="
134
134
  - !ruby/object:Gem::Version
135
- version: 0.9.1
135
+ version: 0.9.3
136
136
  - !ruby/object:Gem::Dependency
137
137
  name: simplecov-html
138
138
  requirement: !ruby/object:Gem::Requirement
139
139
  requirements:
140
140
  - - "~>"
141
141
  - !ruby/object:Gem::Version
142
- version: '0.12'
142
+ version: '0.13'
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: 0.13.1
143
146
  type: :runtime
144
147
  prerelease: false
145
148
  version_requirements: !ruby/object:Gem::Requirement
146
149
  requirements:
147
150
  - - "~>"
148
151
  - !ruby/object:Gem::Version
149
- version: '0.12'
152
+ version: '0.13'
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: 0.13.1
150
156
  - !ruby/object:Gem::Dependency
151
157
  name: simplecov_json_formatter
152
158
  requirement: !ruby/object:Gem::Requirement
@@ -190,7 +196,7 @@ dependencies:
190
196
  version: '0.3'
191
197
  - - ">="
192
198
  - !ruby/object:Gem::Version
193
- version: 0.3.3
199
+ version: 0.3.7
194
200
  type: :runtime
195
201
  prerelease: false
196
202
  version_requirements: !ruby/object:Gem::Requirement
@@ -200,7 +206,7 @@ dependencies:
200
206
  version: '0.3'
201
207
  - - ">="
202
208
  - !ruby/object:Gem::Version
203
- version: 0.3.3
209
+ version: 0.3.7
204
210
  - !ruby/object:Gem::Dependency
205
211
  name: yard
206
212
  requirement: !ruby/object:Gem::Requirement
@@ -372,7 +378,7 @@ dependencies:
372
378
  version: '1.0'
373
379
  - - ">="
374
380
  - !ruby/object:Gem::Version
375
- version: 1.0.8
381
+ version: 1.0.11
376
382
  type: :development
377
383
  prerelease: false
378
384
  version_requirements: !ruby/object:Gem::Requirement
@@ -382,13 +388,13 @@ dependencies:
382
388
  version: '1.0'
383
389
  - - ">="
384
390
  - !ruby/object:Gem::Version
385
- version: 1.0.8
391
+ version: 1.0.11
386
392
  description: |
387
393
  A Covered Kettle of Test Coverage SOUP (Software of Unknown Provenance)
388
394
  Four-line SimpleCov config, w/ curated, opinionated, pre-configured, dependencies
389
395
  for every CI platform, batteries included.
390
396
  email:
391
- - peter.boling@gmail.com
397
+ - floss@galtzo.com
392
398
  executables: []
393
399
  extensions: []
394
400
  extra_rdoc_files:
@@ -423,13 +429,14 @@ licenses:
423
429
  - MIT
424
430
  metadata:
425
431
  homepage_uri: https://kettle-soup-cover.galtzo.com/
426
- source_code_uri: https://github.com/kettle-rb/kettle-soup-cover/releases/tag//v1.0.9
427
- changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.9/CHANGELOG.md
432
+ source_code_uri: https://github.com/kettle-rb/kettle-soup-cover/releases/tag/v1.0.10
433
+ changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.10/CHANGELOG.md
428
434
  bug_tracker_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/issues
429
- documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.9
435
+ documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.10
430
436
  wiki_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/wiki
431
- funding_uri: https://liberapay.com/pboling
437
+ funding_uri: https://github.com/sponsors/pboling
432
438
  news_uri: https://www.railsbling.com/tags/kettle-soup-cover
439
+ discord_uri: https://discord.gg/3qme4XHNKN
433
440
  rubygems_mfa_required: 'true'
434
441
  rdoc_options:
435
442
  - "--title"
metadata.gz.sig CHANGED
Binary file