kettle-dev 1.0.22 → 1.0.24
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/.github/workflows/style.yml +3 -3
- data/.github/workflows/truffle.yml +3 -3
- data/CHANGELOG.md +85 -45
- data/FUNDING.md +77 -0
- data/README.md +9 -12
- data/README.md.example +10 -6
- data/Rakefile.example +1 -1
- data/exe/kettle-changelog +23 -351
- data/exe/kettle-commit-msg +26 -5
- data/exe/kettle-readme-backers +25 -4
- data/exe/kettle-release +14 -5
- data/kettle-dev.gemspec.example +4 -3
- data/lib/kettle/dev/changelog_cli.rb +352 -0
- data/lib/kettle/dev/ci_monitor.rb +0 -5
- data/lib/kettle/dev/gem_spec_reader.rb +129 -0
- data/lib/kettle/dev/git_commit_footer.rb +0 -2
- data/lib/kettle/dev/readme_backers.rb +0 -1
- data/lib/kettle/dev/release_cli.rb +10 -11
- data/lib/kettle/dev/tasks/ci_task.rb +14 -27
- data/lib/kettle/dev/tasks/install_task.rb +80 -92
- data/lib/kettle/dev/tasks/template_task.rb +102 -8
- data/lib/kettle/dev/template_helpers.rb +10 -79
- data/lib/kettle/dev/version.rb +1 -1
- data/lib/kettle/dev.rb +9 -3
- data/lib/kettle/emoji_regex.rb +1 -1
- data/sig/kettle/dev/gem_spec_reader.rbs +30 -0
- data/sig/kettle/dev/template_helpers.rbs +10 -0
- data.tar.gz.sig +0 -0
- metadata +9 -4
- 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: 18a2a49f1f3ff6f56b45722fd639b3e105702efcdb5330b3f8e30fe4a3822944
|
4
|
+
data.tar.gz: 612e2bc0921772f2509eecb2be905510492478930762f2d9c410e717dc469072
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e716da16be08ba3a41d9a51323c13ec18f9ffd2eb84958d9d52e2f4e10b4e220102e6b880e410edbc161ad060036e5943d0718225f8e957a0432c42aae0fa30f
|
7
|
+
data.tar.gz: 77b1cefdf23e5bfcc24dd66005026884f4aadefd4c749ee2d6bc07caeef02f0e4d295cb389c34bfb34e8bf6f7d4d5240a0229c8153d56163bb51ae1ced903b27
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/.github/workflows/style.yml
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
name: Style
|
2
2
|
|
3
|
+
permissions:
|
4
|
+
contents: read
|
5
|
+
|
3
6
|
on:
|
4
7
|
push:
|
5
8
|
branches:
|
@@ -13,9 +16,6 @@ on:
|
|
13
16
|
# Allow manually triggering the workflow.
|
14
17
|
workflow_dispatch:
|
15
18
|
|
16
|
-
permissions:
|
17
|
-
contents: read
|
18
|
-
|
19
19
|
# Cancels all previous workflow runs for the same branch that have not yet completed.
|
20
20
|
concurrency:
|
21
21
|
# The concurrency group contains the workflow name and the branch name.
|
@@ -1,5 +1,8 @@
|
|
1
1
|
name: Truffle
|
2
2
|
|
3
|
+
permissions:
|
4
|
+
contents: read
|
5
|
+
|
3
6
|
env:
|
4
7
|
K_SOUP_COV_DO: false
|
5
8
|
|
@@ -16,9 +19,6 @@ on:
|
|
16
19
|
# Allow manually triggering the workflow.
|
17
20
|
workflow_dispatch:
|
18
21
|
|
19
|
-
permissions:
|
20
|
-
contents: read
|
21
|
-
|
22
22
|
# Cancels all previous workflow runs for the same branch that have not yet completed.
|
23
23
|
concurrency:
|
24
24
|
# The concurrency group contains the workflow name and the branch name.
|
data/CHANGELOG.md
CHANGED
@@ -24,6 +24,42 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
24
24
|
### Fixed
|
25
25
|
### Security
|
26
26
|
|
27
|
+
## [1.0.24] - 2025-08-31
|
28
|
+
- TAG: [v1.0.24][1.0.24t]
|
29
|
+
- COVERAGE: 97.51% -- 2625/2692 lines in 22 files
|
30
|
+
- BRANCH COVERAGE: 81.97% -- 1096/1337 branches in 22 files
|
31
|
+
- 75.00% documented
|
32
|
+
### Added
|
33
|
+
- improved documentation
|
34
|
+
- more badges in README (gem & template)
|
35
|
+
- integration test for kettle-changelog using CHANGELOG.md.
|
36
|
+
- integration test for kettle-changelog using KEEP_A_CHANGELOG.md.
|
37
|
+
### Changed
|
38
|
+
- add output to error handling related to release creation on GitHub
|
39
|
+
- refactored Kettle::Dev::Tasks::CITask.abort => task_abort
|
40
|
+
- Avoids method name clash with ExitAdapter
|
41
|
+
- follows the pattern of other Kettle::Dev::Tasks modules
|
42
|
+
- move --help handling for kettle-changelog to kettle-changelog itself
|
43
|
+
### Fixed
|
44
|
+
- typos in README for gem & template
|
45
|
+
- kettle-changelog: more robust in retention of version chunks, and markdown link refs, that are not relevant to the chunk being added
|
46
|
+
- rearrange footer links in changelog by order, newest first, oldest last
|
47
|
+
- `Kettle::Dev::Tasks::CITask.act` returns properly when running non-interactively
|
48
|
+
- replace Underscores with Dashes in Gem Names for [🚎yard-head] link
|
49
|
+
|
50
|
+
## [1.0.23] - 2025-08-30
|
51
|
+
- TAG: [v1.0.23][1.0.23t]
|
52
|
+
- COVERAGE: 97.75% -- 2428/2484 lines in 21 files
|
53
|
+
- BRANCH COVERAGE: 81.76% -- 1013/1239 branches in 21 files
|
54
|
+
- 76.00% documented
|
55
|
+
### Added
|
56
|
+
- Carryover important fields from the original gemspec during templating
|
57
|
+
- refactor gemspec parsing
|
58
|
+
- normalize template gemspec data
|
59
|
+
### Fixed
|
60
|
+
- include FUNDING.md in the released gem package
|
61
|
+
- typo of required_ruby_version
|
62
|
+
|
27
63
|
## [1.0.22] - 2025-08-30
|
28
64
|
- TAG: [v1.0.22][1.0.22t]
|
29
65
|
- COVERAGE: 97.82% -- 2375/2428 lines in 20 files
|
@@ -338,50 +374,54 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
338
374
|
- Selecting will run the selected workflow via `act`
|
339
375
|
- This may move to its own gem in the future.
|
340
376
|
|
341
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.
|
342
|
-
[1.0.
|
343
|
-
[1.0.
|
344
|
-
[1.0.
|
345
|
-
[1.0.
|
346
|
-
[1.0.2]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.1...v1.0.2
|
347
|
-
[1.0.2t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.2
|
348
|
-
[1.0.3]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.2...v1.0.3
|
349
|
-
[1.0.3t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.3
|
350
|
-
[1.0.4]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.3...v1.0.4
|
351
|
-
[1.0.4t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.4
|
352
|
-
[1.0.5]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.4...v1.0.5
|
353
|
-
[1.0.5t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.5
|
354
|
-
[1.0.6]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.5...v1.0.6
|
355
|
-
[1.0.6t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.6
|
356
|
-
[1.0.7]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.6...v1.0.7
|
357
|
-
[1.0.7t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.7
|
358
|
-
[1.0.8]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.7...v1.0.8
|
359
|
-
[1.0.8t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.8
|
360
|
-
[1.0.9]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.8...v1.0.9
|
361
|
-
[1.0.9t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.9
|
362
|
-
[1.0.10]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.9...v1.0.10
|
363
|
-
[1.0.10t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.10
|
364
|
-
[1.0.11]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.10...v1.0.11
|
365
|
-
[1.0.11t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.11
|
366
|
-
[1.0.12]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.11...v1.0.12
|
367
|
-
[1.0.12t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.12
|
368
|
-
[1.0.13]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.12...v1.0.13
|
369
|
-
[1.0.13t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.13
|
370
|
-
[1.0.14]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.13...v1.0.14
|
371
|
-
[1.0.14t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.14
|
372
|
-
[1.0.15]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.14...v1.0.15
|
373
|
-
[1.0.15t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.15
|
374
|
-
[1.0.16]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.15...v1.0.16
|
375
|
-
[1.0.16t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.16
|
376
|
-
[1.0.17]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.16...v1.0.17
|
377
|
-
[1.0.17t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.17
|
378
|
-
[1.0.18]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.17...v1.0.18
|
379
|
-
[1.0.18t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.18
|
380
|
-
[1.0.19]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.18...v1.0.19
|
381
|
-
[1.0.19t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.19
|
382
|
-
[1.0.20]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.19...v1.0.20
|
383
|
-
[1.0.20t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.20
|
384
|
-
[1.0.21]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.20...v1.0.21
|
385
|
-
[1.0.21t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.21
|
377
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.24...HEAD
|
378
|
+
[1.0.24]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.23...v1.0.24
|
379
|
+
[1.0.24t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.24
|
380
|
+
[1.0.23]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.22...v1.0.23
|
381
|
+
[1.0.23t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.23
|
386
382
|
[1.0.22]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.21...v1.0.22
|
387
383
|
[1.0.22t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.22
|
384
|
+
[1.0.21]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.20...v1.0.21
|
385
|
+
[1.0.21t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.21
|
386
|
+
[1.0.20]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.19...v1.0.20
|
387
|
+
[1.0.20t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.20
|
388
|
+
[1.0.19]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.18...v1.0.19
|
389
|
+
[1.0.19t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.19
|
390
|
+
[1.0.18]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.17...v1.0.18
|
391
|
+
[1.0.18t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.18
|
392
|
+
[1.0.17]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.16...v1.0.17
|
393
|
+
[1.0.17t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.17
|
394
|
+
[1.0.16]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.15...v1.0.16
|
395
|
+
[1.0.16t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.16
|
396
|
+
[1.0.15]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.14...v1.0.15
|
397
|
+
[1.0.15t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.15
|
398
|
+
[1.0.14]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.13...v1.0.14
|
399
|
+
[1.0.14t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.14
|
400
|
+
[1.0.13]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.12...v1.0.13
|
401
|
+
[1.0.13t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.13
|
402
|
+
[1.0.12]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.11...v1.0.12
|
403
|
+
[1.0.12t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.12
|
404
|
+
[1.0.11]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.10...v1.0.11
|
405
|
+
[1.0.11t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.11
|
406
|
+
[1.0.10]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.9...v1.0.10
|
407
|
+
[1.0.10t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.10
|
408
|
+
[1.0.9]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.8...v1.0.9
|
409
|
+
[1.0.9t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.9
|
410
|
+
[1.0.8]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.7...v1.0.8
|
411
|
+
[1.0.8t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.8
|
412
|
+
[1.0.7]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.6...v1.0.7
|
413
|
+
[1.0.7t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.7
|
414
|
+
[1.0.6]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.5...v1.0.6
|
415
|
+
[1.0.6t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.6
|
416
|
+
[1.0.5]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.4...v1.0.5
|
417
|
+
[1.0.5t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.5
|
418
|
+
[1.0.4]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.3...v1.0.4
|
419
|
+
[1.0.4t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.4
|
420
|
+
[1.0.3]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.2...v1.0.3
|
421
|
+
[1.0.3t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.3
|
422
|
+
[1.0.2]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.1...v1.0.2
|
423
|
+
[1.0.2t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.2
|
424
|
+
[1.0.1]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.0...v1.0.1
|
425
|
+
[1.0.1t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.1
|
426
|
+
[1.0.0]: https://github.com/kettle-rb/kettle-dev/compare/a427c302df09cfe4253a7c8d400333f9a4c1a208...v1.0.0
|
427
|
+
[1.0.0t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.0
|
data/FUNDING.md
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
<!-- RELEASE-NOTES-FOOTER-START -->
|
2
|
+
|
3
|
+
Official Discord 👉️ [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
4
|
+
|
5
|
+
Many paths lead to being a sponsor or a backer of this project. Are you on such a path?
|
6
|
+
|
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
|
+
|
9
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![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]
|
10
|
+
|
11
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
12
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
13
|
+
[🖇osc-backers]: https://opencollective.com/kettle-rb#backer
|
14
|
+
[🖇osc-backers-i]: https://opencollective.com/kettle-rb/backers/badge.svg?style=flat
|
15
|
+
[🖇osc-sponsors]: https://opencollective.com/kettle-rb#sponsor
|
16
|
+
[🖇osc-sponsors-i]: https://opencollective.com/kettle-rb/sponsors/badge.svg?style=flat
|
17
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
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
|
+
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-✓-a51611.svg?style=flat
|
22
|
+
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
23
|
+
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
24
|
+
[🖇patreon]: https://patreon.com/galtzo
|
25
|
+
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-a51611.svg?style=flat
|
26
|
+
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
27
|
+
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
28
|
+
[🖇paypal]: https://www.paypal.com/paypalme/peterboling
|
29
|
+
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
30
|
+
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=flat
|
31
|
+
|
32
|
+
<!-- RELEASE-NOTES-FOOTER-END -->
|
33
|
+
|
34
|
+
# 🤑 Request for Help
|
35
|
+
|
36
|
+
Maintainers have teeth and need to pay their dentists.
|
37
|
+
After getting laid off in an RIF in March and filled with many dozens of rejections,
|
38
|
+
I'm now spending ~60+ hours a week building open source tools.
|
39
|
+
I'm hoping to be able to pay for my kids' health insurance this month,
|
40
|
+
so if you value the work I am doing, I need your support.
|
41
|
+
Please consider sponsoring me or the project.
|
42
|
+
|
43
|
+
To join the community or get help 👇️ Join the Discord.
|
44
|
+
|
45
|
+
[![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite]
|
46
|
+
|
47
|
+
To say "thanks for maintaining such a great tool" ☝️ Join the Discord or 👇️ send money.
|
48
|
+
|
49
|
+
[![Sponsor kettle-rb/kettle-dev on Open Source Collective][🖇osc-all-bottom-img]][🖇osc] 💌 [![Sponsor me on GitHub Sponsors][🖇sponsor-bottom-img]][🖇sponsor] 💌 [![Sponsor me on Liberapay][⛳liberapay-bottom-img]][⛳liberapay-img] 💌 [![Donate on PayPal][🖇paypal-bottom-img]][🖇paypal-img]
|
50
|
+
|
51
|
+
# Another Way to Support Open Source Software
|
52
|
+
|
53
|
+
> How wonderful it is that nobody need wait a single moment before starting to improve the world.<br/>
|
54
|
+
>—Anne Frank
|
55
|
+
|
56
|
+
I’m driven by a passion to foster a thriving open-source community – a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions — totaling 79 hours of FLOSS coding over just the past seven days, a pretty regular week for me. I was recently affected by layoffs, and the tech jobs market is unwelcoming. I’m reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 🐔 chickens, 2 🐶 dogs, 3 🐰 rabbits, 8 🐈 cats).
|
57
|
+
|
58
|
+
If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in `bundle fund`.
|
59
|
+
|
60
|
+
I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.
|
61
|
+
|
62
|
+
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
63
|
+
|
64
|
+
[⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
|
65
|
+
[🖇osc-all-img]: https://img.shields.io/opencollective/all/kettle-rb
|
66
|
+
[🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/kettle-rb
|
67
|
+
[🖇osc-backers-img]: https://img.shields.io/opencollective/backers/kettle-rb
|
68
|
+
[🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/kettle-rb?style=for-the-badge
|
69
|
+
[🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/kettle-rb?style=for-the-badge
|
70
|
+
[🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/kettle-rb?style=for-the-badge
|
71
|
+
[🖇osc]: https://opencollective.com/kettle-rb
|
72
|
+
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
73
|
+
[🖇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
|
74
|
+
[🖇paypal-bottom-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=for-the-badge&logo=paypal&color=0A0A0A
|
75
|
+
[🖇floss-funding.dev]: https://floss-funding.dev
|
76
|
+
[🖇floss-funding-gem]: https://github.com/galtzo-floss/floss_funding
|
77
|
+
[✉️discord-invite-img-ftb]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
# 🍲 Kettle::Dev
|
11
11
|
|
12
|
-
[![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![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 Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-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 Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf]
|
12
|
+
[![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![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 Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-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 Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![CodeQL][🖐codeQL-img]][🖐codeQL]
|
13
13
|
|
14
14
|
If ☝️ `ci_badges.map(&:color).detect { it != "green"}` [let me know][🖼️galtzo-discord], as I may have missed the [discord notification][🖼️galtzo-discord].
|
15
15
|
|
@@ -41,13 +41,6 @@ bundle exec rake kettle:dev:install
|
|
41
41
|
|
42
42
|
Now you have many powerful development and testing tools at your disposal, all fully [documented](#-configuration) and tested.
|
43
43
|
|
44
|
-
I expect the current release of this gem to be compatible with Ruby 2.3+,
|
45
|
-
and concordant releases of JRuby, and TruffleRuby.
|
46
|
-
|
47
|
-
| 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 |
|
48
|
-
|------------------------------------------------|-------------------------------------------------------------------------------------|
|
49
|
-
| 👟 Check it out! | ✨ [github.com/appraisal-rb/appraisal2][💎appraisal2] ✨ |
|
50
|
-
|
51
44
|
## 💡 Info you can shake a stick at
|
52
45
|
|
53
46
|
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
@@ -66,7 +59,7 @@ and concordant releases of JRuby, and TruffleRuby.
|
|
66
59
|
|
67
60
|
### Compatibility
|
68
61
|
|
69
|
-
Compatible with Ruby 2.3+, and concordant releases of JRuby, and TruffleRuby.
|
62
|
+
Compatible with MRI Ruby 2.3+, and concordant releases of JRuby, and TruffleRuby.
|
70
63
|
|
71
64
|
| 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 |
|
72
65
|
|------------------------------------------------|-------------------------------------------------------------------------------------|
|
@@ -90,9 +83,13 @@ Compatible with Ruby 2.3+, and concordant releases of JRuby, and TruffleRuby.
|
|
90
83
|
|
91
84
|
### Enterprise Support [](https://tidelift.com/subscription/pkg/rubygems-kettle-dev?utm_source=rubygems-kettle-dev&utm_medium=referral&utm_campaign=readme)
|
92
85
|
|
86
|
+
Available as part of the Tidelift Subscription.
|
87
|
+
|
93
88
|
<details>
|
94
89
|
<summary>Need enterprise-level guarantees?</summary>
|
95
90
|
|
91
|
+
The maintainers of this and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.
|
92
|
+
|
96
93
|
[![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift]
|
97
94
|
|
98
95
|
- 💡Subscribe for support guarantees covering _all_ your FLOSS dependencies
|
@@ -608,7 +605,7 @@ Thanks for RTFM. ☺️
|
|
608
605
|
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|
609
606
|
[💖🖇linkedin]: http://www.linkedin.com/in/peterboling
|
610
607
|
[💖🖇linkedin-img]: https://img.shields.io/badge/PeterBoling-LinkedIn-0B66C2?style=flat&logo=newjapanprowrestling
|
611
|
-
[💖✌️wellfound]: https://wellfound.com/u/peter-boling
|
608
|
+
[💖✌️wellfound]: https://wellfound.com/u/peter-boling
|
612
609
|
[💖✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=flat&logo=wellfound
|
613
610
|
[💖💲crunchbase]: https://www.crunchbase.com/person/peter-boling
|
614
611
|
[💖💲crunchbase-img]: https://img.shields.io/badge/peter--boling-purple?style=flat&logo=crunchbase
|
@@ -735,7 +732,7 @@ Thanks for RTFM. ☺️
|
|
735
732
|
[📌gitmoji]:https://gitmoji.dev
|
736
733
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20😜%20😍-34495e.svg?style=flat-square
|
737
734
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
738
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-2.
|
735
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-2.692-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
739
736
|
[🔐security]: SECURITY.md
|
740
737
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
741
738
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
@@ -745,7 +742,7 @@ Thanks for RTFM. ☺️
|
|
745
742
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
746
743
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
747
744
|
[🚎yard-current]: http://rubydoc.info/gems/kettle-dev
|
748
|
-
[🚎yard-head]: https://
|
745
|
+
[🚎yard-head]: https://kettle-dev.galtzo.com
|
749
746
|
[💎stone_checksums]: https://github.com/galtzo-floss/stone_checksums
|
750
747
|
[💎SHA_checksums]: https://gitlab.com/kettle-rb/kettle-dev/-/tree/main/checksums
|
751
748
|
[💎rlts]: https://github.com/rubocop-lts/rubocop-lts
|
data/README.md.example
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
# 🍲 Kettle::Dev
|
11
11
|
|
12
|
-
[![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![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 Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-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 Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf]
|
12
|
+
[![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![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 Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-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 Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![CodeQL][🖐codeQL-img]][🖐codeQL]
|
13
13
|
|
14
14
|
If ☝️ `ci_badges.map(&:color).detect { it != "green"}` [let me know][🖼️galtzo-discord], as I may have missed the [discord notification][🖼️galtzo-discord].
|
15
15
|
|
@@ -35,13 +35,13 @@ OTOH, if `ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I
|
|
35
35
|
| Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![Maintainer Blog][🚂maint-blog-img]][🚂maint-blog] [![Wiki][📜wiki-img]][📜wiki] |
|
36
36
|
| 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] |
|
37
37
|
| Style | [![Enforced Code Style Linter][💎rlts-img]][💎rlts] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog] [![Gitmoji Commits][📌gitmoji-img]][📌gitmoji] [![Compatibility appraised by: appraisal2][💎appraisal2-img]][💎appraisal2] |
|
38
|
-
| 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]
|
38
|
+
| Support | [![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] |
|
39
39
|
| Maintainer 🎖️ | [![Follow Me on LinkedIn][💖🖇linkedin-img]][💖🖇linkedin] [![Follow Me on Ruby.Social][💖🐘ruby-mast-img]][💖🐘ruby-mast] [![Follow Me on Bluesky][💖🦋bluesky-img]][💖🦋bluesky] [![Contact Maintainer][🚂maint-contact-img]][🚂maint-contact] [![My technical writing][💖💁🏼♂️devto-img]][💖💁🏼♂️devto] |
|
40
40
|
| `...` 💖 | [![Find Me on WellFound:][💖✌️wellfound-img]][💖✌️wellfound] [![Find Me on CrunchBase][💖💲crunchbase-img]][💖💲crunchbase] [![My LinkTree][💖🌳linktree-img]][💖🌳linktree] [![More About Me][💖💁🏼♂️aboutme-img]][💖💁🏼♂️aboutme] [🧊][💖🧊berg] [🐙][💖🐙hub] [🛖][💖🛖hut] [🧪][💖🧪lab] |
|
41
41
|
|
42
42
|
### Compatibility
|
43
43
|
|
44
|
-
Compatible with Ruby 2.3+, and concordant releases of JRuby, and TruffleRuby.
|
44
|
+
Compatible with MRI Ruby 2.3+, and concordant releases of JRuby, and TruffleRuby.
|
45
45
|
|
46
46
|
| 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 |
|
47
47
|
|------------------------------------------------|-------------------------------------------------------------------------------------|
|
@@ -65,9 +65,13 @@ Compatible with Ruby 2.3+, and concordant releases of JRuby, and TruffleRuby.
|
|
65
65
|
|
66
66
|
### Enterprise Support [](https://tidelift.com/subscription/pkg/rubygems-kettle-dev?utm_source=rubygems-kettle-dev&utm_medium=referral&utm_campaign=readme)
|
67
67
|
|
68
|
+
Available as part of the Tidelift Subscription.
|
69
|
+
|
68
70
|
<details>
|
69
71
|
<summary>Need enterprise-level guarantees?</summary>
|
70
72
|
|
73
|
+
The maintainers of this and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.
|
74
|
+
|
71
75
|
[![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift]
|
72
76
|
|
73
77
|
- 💡Subscribe for support guarantees covering _all_ your FLOSS dependencies
|
@@ -369,7 +373,7 @@ Thanks for RTFM. ☺️
|
|
369
373
|
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|
370
374
|
[💖🖇linkedin]: http://www.linkedin.com/in/peterboling
|
371
375
|
[💖🖇linkedin-img]: https://img.shields.io/badge/PeterBoling-LinkedIn-0B66C2?style=flat&logo=newjapanprowrestling
|
372
|
-
[💖✌️wellfound]: https://wellfound.com/u/peter-boling
|
376
|
+
[💖✌️wellfound]: https://wellfound.com/u/peter-boling
|
373
377
|
[💖✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=flat&logo=wellfound
|
374
378
|
[💖💲crunchbase]: https://www.crunchbase.com/person/peter-boling
|
375
379
|
[💖💲crunchbase-img]: https://img.shields.io/badge/peter--boling-purple?style=flat&logo=crunchbase
|
@@ -501,7 +505,7 @@ Thanks for RTFM. ☺️
|
|
501
505
|
[📌gitmoji]:https://gitmoji.dev
|
502
506
|
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20😜%20😍-34495e.svg?style=flat-square
|
503
507
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
504
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-2.
|
508
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-2.692-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
505
509
|
[🔐security]: SECURITY.md
|
506
510
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
507
511
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
@@ -511,7 +515,7 @@ Thanks for RTFM. ☺️
|
|
511
515
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
512
516
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
513
517
|
[🚎yard-current]: http://rubydoc.info/gems/kettle-dev
|
514
|
-
[🚎yard-head]: https://
|
518
|
+
[🚎yard-head]: https://kettle-dev.galtzo.com
|
515
519
|
[💎stone_checksums]: https://github.com/galtzo-floss/stone_checksums
|
516
520
|
[💎SHA_checksums]: https://gitlab.com/kettle-rb/kettle-dev/-/tree/main/checksums
|
517
521
|
[💎rlts]: https://github.com/rubocop-lts/rubocop-lts
|