kettle-dev 1.0.23 → 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 +72 -47
- 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 +2 -2
- data/lib/kettle/dev/changelog_cli.rb +352 -0
- data/lib/kettle/dev/ci_monitor.rb +0 -5
- 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 +0 -3
- data/lib/kettle/dev/tasks/template_task.rb +0 -3
- data/lib/kettle/dev/template_helpers.rb +9 -2
- data/lib/kettle/dev/version.rb +1 -1
- data/lib/kettle/dev.rb +8 -3
- data.tar.gz.sig +0 -0
- metadata +5 -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,29 @@ 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
|
+
|
27
50
|
## [1.0.23] - 2025-08-30
|
28
51
|
- TAG: [v1.0.23][1.0.23t]
|
29
52
|
- COVERAGE: 97.75% -- 2428/2484 lines in 21 files
|
@@ -351,52 +374,54 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
351
374
|
- Selecting will run the selected workflow via `act`
|
352
375
|
- This may move to its own gem in the future.
|
353
376
|
|
354
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.
|
355
|
-
[1.0.
|
356
|
-
[1.0.
|
357
|
-
[1.0.1]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.0...v1.0.1
|
358
|
-
[1.0.1t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.1
|
359
|
-
[1.0.2]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.1...v1.0.2
|
360
|
-
[1.0.2t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.2
|
361
|
-
[1.0.3]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.2...v1.0.3
|
362
|
-
[1.0.3t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.3
|
363
|
-
[1.0.4]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.3...v1.0.4
|
364
|
-
[1.0.4t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.4
|
365
|
-
[1.0.5]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.4...v1.0.5
|
366
|
-
[1.0.5t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.5
|
367
|
-
[1.0.6]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.5...v1.0.6
|
368
|
-
[1.0.6t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.6
|
369
|
-
[1.0.7]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.6...v1.0.7
|
370
|
-
[1.0.7t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.7
|
371
|
-
[1.0.8]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.7...v1.0.8
|
372
|
-
[1.0.8t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.8
|
373
|
-
[1.0.9]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.8...v1.0.9
|
374
|
-
[1.0.9t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.9
|
375
|
-
[1.0.10]: https://gitlab.com/kettle-rb/kettle-dev/-/compare/v1.0.9...v1.0.10
|
376
|
-
[1.0.10t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.10
|
377
|
-
[1.0.11]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.10...v1.0.11
|
378
|
-
[1.0.11t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.11
|
379
|
-
[1.0.12]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.11...v1.0.12
|
380
|
-
[1.0.12t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.12
|
381
|
-
[1.0.13]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.12...v1.0.13
|
382
|
-
[1.0.13t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.13
|
383
|
-
[1.0.14]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.13...v1.0.14
|
384
|
-
[1.0.14t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.14
|
385
|
-
[1.0.15]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.14...v1.0.15
|
386
|
-
[1.0.15t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.15
|
387
|
-
[1.0.16]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.15...v1.0.16
|
388
|
-
[1.0.16t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.16
|
389
|
-
[1.0.17]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.16...v1.0.17
|
390
|
-
[1.0.17t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.17
|
391
|
-
[1.0.18]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.17...v1.0.18
|
392
|
-
[1.0.18t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.18
|
393
|
-
[1.0.19]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.18...v1.0.19
|
394
|
-
[1.0.19t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.19
|
395
|
-
[1.0.20]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.19...v1.0.20
|
396
|
-
[1.0.20t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.20
|
397
|
-
[1.0.21]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.20...v1.0.21
|
398
|
-
[1.0.21t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.21
|
399
|
-
[1.0.22]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.21...v1.0.22
|
400
|
-
[1.0.22t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.22
|
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
|
401
380
|
[1.0.23]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.22...v1.0.23
|
402
381
|
[1.0.23t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.0.23
|
382
|
+
[1.0.22]: https://github.com/kettle-rb/kettle-dev/compare/v1.0.21...v1.0.22
|
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/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
|