kettle-jem 7.1.1 → 7.1.3
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/CHANGELOG.md +81 -4
- data/README.md +2 -15
- data/lib/kettle/jem/tasks/install_task.rb +45 -0
- data/lib/kettle/jem/tasks/prepare_task.rb +24 -1
- data/lib/kettle/jem/tasks/template_task.rb +1 -0
- data/lib/kettle/jem/templates/AGENTS.md.example +0 -1
- data/lib/kettle/jem/templates/Gemfile.example +3 -0
- data/lib/kettle/jem/templates/README.md.example +5 -6
- data/lib/kettle/jem/templates/gem.gemspec.example +2 -2
- data/lib/kettle/jem/templates/gemfiles/modular/changelog.gemfile.example +6 -0
- data/lib/kettle/jem/templates/gemfiles/modular/documentation.gemfile.example +4 -4
- data/lib/kettle/jem/templates/gemfiles/modular/style.gemfile.example +3 -1
- data/lib/kettle/jem/templates/gemfiles/modular/templating_local.gemfile.example +2 -1
- data/lib/kettle/jem/templates/gemfiles/modular/x_std_libs/r3.1/libs.gemfile.example +2 -0
- data/lib/kettle/jem/templates/shim/gem.gemspec.example +1 -1
- data/lib/kettle/jem/version.rb +1 -1
- data/lib/kettle/jem.rb +252 -21
- data.tar.gz.sig +0 -0
- metadata +195 -86
- 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: 3fb60c644be8bcdb4360d8a26fd07474cd3a0b395b219e4e28acabee18e91df0
|
|
4
|
+
data.tar.gz: 946fb2cb8276f4f617be75f6abf674579a850632b85ab78044540b045c6f0c5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d4a66d55400ac8324176d418be9c64f3f09367eed95081dedf95b81c4fc85a112cfe1939743310d82ca68b1b1b01980387667c86ed851854d2d1993f65d9df9
|
|
7
|
+
data.tar.gz: 3d233a58e400bf078ad4505423bf0bb8aed22bd50a774288419fa7eaf9761ddc85f47ca69b9dae8e57aa791645b8c1a9a3b43967dffb3622cbfe12f094bf1020
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,82 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [7.1.3] - 2026-08-11
|
|
34
|
+
|
|
35
|
+
- TAG: [v7.1.3][7.1.3t]
|
|
36
|
+
- COVERAGE: 93.99% -- 10757/11445 lines in 15 files
|
|
37
|
+
- BRANCH COVERAGE: 77.39% -- 4605/5950 branches in 15 files
|
|
38
|
+
- 18.01% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Generate README star-history embeds with the revived star-history.dera.page service.
|
|
43
|
+
|
|
44
|
+
- Generate the README Star History section only for GitHub repositories with at least 150 stars.
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- Handle comment-only YAML documents while pruning disabled engine workflow jobs.
|
|
49
|
+
|
|
50
|
+
- Remove disabled engine workflow badge references from generated README files.
|
|
51
|
+
|
|
52
|
+
- Gemspec templating now discards untouched Bundler allowed-push-host placeholders while preserving destination-specific metadata.
|
|
53
|
+
|
|
54
|
+
- Prepare profile synchronization now materializes newly added modular Gemfiles before Bundler bootstrapping.
|
|
55
|
+
|
|
56
|
+
- Generate modular changelog Gemfiles with the released kettle-changelog 1.x dependency floor.
|
|
57
|
+
|
|
58
|
+
- Synchronize monorepo subgem profiles with a template-owned Rakefile so legacy generated task blocks are replaced instead of duplicated.
|
|
59
|
+
|
|
60
|
+
- Preserve local Gemfile indentation when removing destination package entries from multiline word arrays.
|
|
61
|
+
|
|
62
|
+
- Add the generated frozen-string-literal comment to Ruby 3.1 extracted stdlib Gemfiles.
|
|
63
|
+
|
|
64
|
+
- Retain the MRI runtime floor when normalizing multi-engine README compatibility text.
|
|
65
|
+
|
|
66
|
+
- Include html-merge in generated StructuredMerge local dependency wiring.
|
|
67
|
+
|
|
68
|
+
## [7.1.2] - 2026-08-10
|
|
69
|
+
|
|
70
|
+
- TAG: [v7.1.2][7.1.2t]
|
|
71
|
+
- COVERAGE: 93.86% -- 10679/11378 lines in 15 files
|
|
72
|
+
- BRANCH COVERAGE: 77.21% -- 4569/5918 branches in 15 files
|
|
73
|
+
- 18.04% documented
|
|
74
|
+
|
|
75
|
+
### Added
|
|
76
|
+
|
|
77
|
+
- Template generated projects now receive kettle-changelog as a development dependency; kettle-changelog itself is excluded to avoid a self-dependency.
|
|
78
|
+
|
|
79
|
+
- Local templating dependency wiring now resolves the standalone kettle-changelog development tool alongside the Kettle development stack.
|
|
80
|
+
|
|
81
|
+
### Changed
|
|
82
|
+
|
|
83
|
+
- Align generated compatibility workflows with the Ruby 4.0 runtime floor by excluding unsupported TruffleRuby targets
|
|
84
|
+
|
|
85
|
+
- Resolve kettle-changelog through a Ruby-compatible modular development Gemfile instead of every generated gemspec.
|
|
86
|
+
|
|
87
|
+
- Keep the standalone kettle-changelog tool in a Ruby-compatible modular Gemfile with explicit local-path wiring, rather than adding it to every generated gemspec.
|
|
88
|
+
|
|
89
|
+
- Allow kettle-jem to resolve kettle-dev 3.x while retaining compatibility with supported kettle-dev 2.x releases.
|
|
90
|
+
|
|
91
|
+
- Allow kettle-jem to update independently within the StructuredMerge 7.1 dependency series instead of requiring every sibling gem to share its patch version.
|
|
92
|
+
|
|
93
|
+
### Fixed
|
|
94
|
+
|
|
95
|
+
- Preserve enabled engine workflow jobs when pruning disabled jobs from generated YAML
|
|
96
|
+
|
|
97
|
+
- Generate README compatibility prose from the configured Ruby engine set
|
|
98
|
+
|
|
99
|
+
- Honor disabled README integrations after destination content is merged
|
|
100
|
+
|
|
101
|
+
- Temporarily pin generated RuboCop Packaging style Gemfiles to the nested-project config-root fix.
|
|
102
|
+
|
|
103
|
+
- Keep scoped kettle-jem template runs from applying unselected post-template mutations.
|
|
104
|
+
|
|
105
|
+
- Preserve destination-only gemspec metadata when the template does not define that key.
|
|
106
|
+
|
|
107
|
+
- Keep aggregate standard-library Gemfile references available when Ruby-floor pruning would otherwise remove their targets, and generate Appraisal Gemfiles during full kettle-jem installs.
|
|
108
|
+
|
|
33
109
|
## [7.1.1] - 2026-08-08
|
|
34
110
|
|
|
35
111
|
- TAG: [v7.1.1][7.1.1t]
|
|
@@ -1255,9 +1331,6 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1255
1331
|
- kettle-jem-template-20260726-003 - Coverage upload steps now treat Coveralls,
|
|
1256
1332
|
QLTY, and Codecov as optional, so provider outages do not fail CI when local
|
|
1257
1333
|
coverage thresholds still pass.
|
|
1258
|
-
- kettle-jem-template-20260728-003 - Generated dep-heads workflows now run
|
|
1259
|
-
TruffleRuby jobs with current RubyGems and Bundler, avoiding setup failures
|
|
1260
|
-
before the test suite starts.
|
|
1261
1334
|
- kettle-jem-template-20260728-004 - Generated dep-heads workflows now use the
|
|
1262
1335
|
setup-ruby Bundler install path for direct appraisal Gemfiles, avoiding rv
|
|
1263
1336
|
lockfile parser failures on Git and path dependencies.
|
|
@@ -1421,7 +1494,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1421
1494
|
- Released kettle-jem as part of the initial StructuredMerge Ruby 7.0.0 gem set.
|
|
1422
1495
|
- Included packaged templates and parser-backed merge support for Ruby gem templating.
|
|
1423
1496
|
|
|
1424
|
-
[Unreleased]: https://github.com/structuredmerge/structuredmerge-ruby/compare/v7.1.
|
|
1497
|
+
[Unreleased]: https://github.com/structuredmerge/structuredmerge-ruby/compare/v7.1.3...HEAD
|
|
1498
|
+
[7.1.3]: https://github.com/structuredmerge/structuredmerge-ruby/compare/v7.1.2...v7.1.3
|
|
1499
|
+
[7.1.3t]: https://github.com/structuredmerge/structuredmerge-ruby/releases/tag/v7.1.3
|
|
1500
|
+
[7.1.2]: https://github.com/structuredmerge/structuredmerge-ruby/compare/v7.1.1...v7.1.2
|
|
1501
|
+
[7.1.2t]: https://github.com/structuredmerge/structuredmerge-ruby/releases/tag/v7.1.2
|
|
1425
1502
|
[7.1.1]: https://github.com/structuredmerge/structuredmerge-ruby/compare/v7.0.0...v7.1.1
|
|
1426
1503
|
[7.1.1t]: https://github.com/structuredmerge/structuredmerge-ruby/releases/tag/v7.1.1
|
|
1427
1504
|
[7.0.0]: https://github.com/structuredmerge/structuredmerge-ruby/compare/0aae485e7ca20583b73f8c146f467a64e526ca41...v7.0.0
|
data/README.md
CHANGED
|
@@ -57,7 +57,7 @@ to build `kettle-jem` extension gems against the supported plugin seam.
|
|
|
57
57
|
|
|
58
58
|
### Compatibility
|
|
59
59
|
|
|
60
|
-
Compatible with MRI Ruby 4.0.0+, and
|
|
60
|
+
Compatible with MRI Ruby 4.0.0+, and JRuby.
|
|
61
61
|
CI workflows and Appraisals are generated for MRI Ruby 4.0.0+.
|
|
62
62
|
This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
|
|
63
63
|
may be higher than the gem's runtime compatibility floor when legacy Rubies are
|
|
@@ -584,19 +584,6 @@ Made with [contributors-img][🖐contrib-rocks].
|
|
|
584
584
|
|
|
585
585
|
Also see GitLab Contributors: [https://gitlab.com/structuredmerge/structuredmerge-ruby/-/graphs/main][🚎contributors-gl]
|
|
586
586
|
|
|
587
|
-
<details markdown="1">
|
|
588
|
-
<summary>⭐️ Star History</summary>
|
|
589
|
-
|
|
590
|
-
<a href="https://star-history.com/structuredmerge/structuredmerge-ruby&Date">
|
|
591
|
-
<picture>
|
|
592
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=structuredmerge/structuredmerge-ruby&type=Date&theme=dark" />
|
|
593
|
-
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=structuredmerge/structuredmerge-ruby&type=Date" />
|
|
594
|
-
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=structuredmerge/structuredmerge-ruby&type=Date" />
|
|
595
|
-
</picture>
|
|
596
|
-
</a>
|
|
597
|
-
|
|
598
|
-
</details>
|
|
599
|
-
|
|
600
587
|
## 📌 Versioning
|
|
601
588
|
|
|
602
589
|
This library follows [![Semantic Versioning 2.0.0][📌semver-img]][📌semver] for its public API where practical.
|
|
@@ -773,7 +760,7 @@ Thanks for RTFM. ☺️
|
|
|
773
760
|
[📌gitmoji]: https://gitmoji.dev
|
|
774
761
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
775
762
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
776
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-11.
|
|
763
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-11.445-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
777
764
|
[🔐security]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/SECURITY.md
|
|
778
765
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
779
766
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
@@ -44,6 +44,7 @@ module Kettle
|
|
|
44
44
|
install_steps << rubocop_lts_branch_step if rubocop_lts_branch_step
|
|
45
45
|
install_steps << run_distinct_bundle_install_step(project_root, env: env, setup_env: setup_env, run_options: effective_run_options, command_runner: command_runner)
|
|
46
46
|
install_steps.concat(run_bundle_setup_commands(project_root, env: setup_env, run_options: effective_run_options, command_runner: command_runner))
|
|
47
|
+
install_steps << appraisal_generate_step(project_root, env: setup_env, run_options: effective_run_options)
|
|
47
48
|
install_steps << rubocop_gradual_autocorrect_step(project_root, env: setup_env, run_options: effective_run_options)
|
|
48
49
|
install_steps << normalize_lockfile_step(project_root, env: setup_env, run_options: effective_run_options)
|
|
49
50
|
install_steps << bundled_handoff_step(project_root: project_root, env: env, run_options: effective_run_options)
|
|
@@ -188,6 +189,7 @@ module Kettle
|
|
|
188
189
|
git_drivers
|
|
189
190
|
rubocop_lts_local_branch
|
|
190
191
|
bundle_install_requested_env
|
|
192
|
+
appraisal_generate
|
|
191
193
|
bin_setup_executable
|
|
192
194
|
bin_setup
|
|
193
195
|
bundle_binstubs
|
|
@@ -629,6 +631,47 @@ module Kettle
|
|
|
629
631
|
steps
|
|
630
632
|
end
|
|
631
633
|
|
|
634
|
+
def appraisal_generate_step(project_root, env: nil, run_options: {})
|
|
635
|
+
if Kettle::Jem::DecisionPolicy.value_to_boolean((run_options || {})[:skip_appraisal_generate])
|
|
636
|
+
return {
|
|
637
|
+
name: "appraisal_generate",
|
|
638
|
+
status: "skipped",
|
|
639
|
+
reason: "skip_appraisal_generate"
|
|
640
|
+
}
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
unless Array((run_options || {})[:only]).empty?
|
|
644
|
+
return {
|
|
645
|
+
name: "appraisal_generate",
|
|
646
|
+
status: "skipped",
|
|
647
|
+
reason: "template_selection"
|
|
648
|
+
}
|
|
649
|
+
end
|
|
650
|
+
|
|
651
|
+
unless File.file?(File.join(project_root.to_s, "Appraisals")) && File.file?(File.join(project_root.to_s, "bin", "rake"))
|
|
652
|
+
return {
|
|
653
|
+
name: "appraisal_generate",
|
|
654
|
+
status: "skipped",
|
|
655
|
+
reason: "missing_appraisals_entrypoint"
|
|
656
|
+
}
|
|
657
|
+
end
|
|
658
|
+
|
|
659
|
+
unless rake_task_available?(project_root, "appraisal:generate", env: env)
|
|
660
|
+
return {
|
|
661
|
+
name: "appraisal_generate",
|
|
662
|
+
status: "skipped",
|
|
663
|
+
reason: "missing_appraisal_generate_task"
|
|
664
|
+
}
|
|
665
|
+
end
|
|
666
|
+
|
|
667
|
+
{
|
|
668
|
+
name: "appraisal_generate",
|
|
669
|
+
command: ["bin/rake", "appraisal:generate"],
|
|
670
|
+
status: "ready",
|
|
671
|
+
reason: "post_template_appraisal_generation"
|
|
672
|
+
}
|
|
673
|
+
end
|
|
674
|
+
|
|
632
675
|
def bundle_binstubs_command(project_root = Dir.pwd, env: ENV)
|
|
633
676
|
%w[bundle binstubs] + curated_binstub_gems_in_bundle(project_root, env: env)
|
|
634
677
|
end
|
|
@@ -1093,6 +1136,8 @@ module Kettle
|
|
|
1093
1136
|
execute_ready_command_step(step, project_root: project_root, env: env, quiet: quiet, command_runner: command_runner)
|
|
1094
1137
|
when "bundle_install_requested_env"
|
|
1095
1138
|
execute_ready_command_step(step, project_root: project_root, env: env, quiet: quiet, command_runner: command_runner)
|
|
1139
|
+
when "appraisal_generate"
|
|
1140
|
+
execute_ready_command_step(step, project_root: project_root, env: env, quiet: quiet, command_runner: command_runner)
|
|
1096
1141
|
when "rubocop_gradual_autocorrect"
|
|
1097
1142
|
execute_ready_command_step(step, project_root: project_root, env: env, quiet: quiet, command_runner: command_runner)
|
|
1098
1143
|
when "hook_templates"
|
|
@@ -31,6 +31,11 @@ module Kettle
|
|
|
31
31
|
)
|
|
32
32
|
events = Kettle::Jem.event_stream_from_options(effective_run_options)
|
|
33
33
|
report = Kettle::Jem.apply_project(project_root, env: env, run_options: prepare_run_options)
|
|
34
|
+
profile_sync_step = synchronize_monorepo_subgem_profile_step(project_root, report)
|
|
35
|
+
supplemental_report = if profile_sync_step && profile_sync_step.fetch(:status) == "applied"
|
|
36
|
+
Kettle::Jem.apply_project(project_root, env: env, run_options: prepare_run_options)
|
|
37
|
+
end
|
|
38
|
+
report = merge_supplemental_prepare_report(report, supplemental_report)
|
|
34
39
|
nomono_bootstrap_step = normalize_existing_local_gemfile_bootstraps_step(project_root, events: events)
|
|
35
40
|
setup_env = Kettle::Jem::Tasks::InstallTask.setup_command_env(project_root, env)
|
|
36
41
|
setup_env["BUNDLE_DISABLE_CHECKSUM_VALIDATION"] = "true"
|
|
@@ -76,7 +81,7 @@ module Kettle
|
|
|
76
81
|
%w[skipped succeeded].include?(reset_step.fetch(:status)) &&
|
|
77
82
|
%w[skipped succeeded].include?(bundle_step.fetch(:status)),
|
|
78
83
|
prepare_only: PREPARE_ONLY_PATHS,
|
|
79
|
-
prepare_steps: [nomono_bootstrap_step, reset_step, bootstrap_step, bundle_step],
|
|
84
|
+
prepare_steps: [profile_sync_step, nomono_bootstrap_step, reset_step, bootstrap_step, bundle_step].compact,
|
|
80
85
|
changed_files: (
|
|
81
86
|
report.fetch(:changed_files, []) +
|
|
82
87
|
nomono_bootstrap_step.fetch(:changed_files, []) +
|
|
@@ -94,6 +99,24 @@ module Kettle
|
|
|
94
99
|
final_report
|
|
95
100
|
end
|
|
96
101
|
|
|
102
|
+
def synchronize_monorepo_subgem_profile_step(project_root, report)
|
|
103
|
+
facts = report.fetch(:facts, {})
|
|
104
|
+
return unless Kettle::Jem.send(:monorepo_subgem_template_profile?, facts)
|
|
105
|
+
|
|
106
|
+
Kettle::Jem.send(:monorepo_subgem_kettle_config_profile_sync_step, project_root, report)
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def merge_supplemental_prepare_report(report, supplemental_report)
|
|
110
|
+
return report unless supplemental_report
|
|
111
|
+
|
|
112
|
+
report.merge(
|
|
113
|
+
changed_files: (
|
|
114
|
+
report.fetch(:changed_files, []) + supplemental_report.fetch(:changed_files, [])
|
|
115
|
+
).uniq.sort,
|
|
116
|
+
diagnostics: report.fetch(:diagnostics, []) + supplemental_report.fetch(:diagnostics, [])
|
|
117
|
+
)
|
|
118
|
+
end
|
|
119
|
+
|
|
97
120
|
def normalize_existing_local_gemfile_bootstraps_step(project_root, events:)
|
|
98
121
|
paths = Dir.glob(File.join(project_root.to_s, "gemfiles/modular/**/*_local.gemfile")).sort
|
|
99
122
|
changed_files = paths.filter_map do |path|
|
|
@@ -66,6 +66,7 @@ module Kettle
|
|
|
66
66
|
skip_drift_check: truthy?(env["KETTLE_JEM_SKIP_DRIFT_CHECK"]),
|
|
67
67
|
skip_rubocop_gradual: truthy?(env["KETTLE_JEM_SKIP_RUBOCOP_GRADUAL"]),
|
|
68
68
|
skip_binstubs: truthy?(env["KETTLE_JEM_SKIP_BINSTUBS"]),
|
|
69
|
+
skip_appraisal_generate: truthy?(env["KETTLE_JEM_SKIP_APPRAISAL_GENERATE"]),
|
|
69
70
|
skip_lock_normalization: truthy?(env["KETTLE_JEM_SKIP_LOCK_NORMALIZATION"]),
|
|
70
71
|
checksums: env["KETTLE_JEM_CHECKSUMS"],
|
|
71
72
|
accept_config: truthy?(env["KETTLE_JEM_ACCEPT_CONFIG"]),
|
|
@@ -95,7 +95,6 @@ This gem is part of the **StructuredMerge** ecosystem. Key development tools:
|
|
|
95
95
|
|-----------|---------|
|
|
96
96
|
| `kettle-release` | Full gem release workflow |
|
|
97
97
|
| `kettle-pre-release` | Pre-release validation |
|
|
98
|
-
| `kettle-changelog` | Changelog generation |
|
|
99
98
|
| `kettle-dvcs` | DVCS (git) workflow automation |
|
|
100
99
|
| `kettle-commit-msg` | Commit message validation |
|
|
101
100
|
| `kettle-check-eof` | EOF newline validation |
|
|
@@ -39,6 +39,9 @@ eval_gemfile "gemfiles/modular/style.gemfile"
|
|
|
39
39
|
# Documentation
|
|
40
40
|
eval_gemfile "gemfiles/modular/documentation.gemfile"
|
|
41
41
|
|
|
42
|
+
# Changelog release tooling (available on Ruby versions supported by kettle-changelog)
|
|
43
|
+
eval_gemfile "gemfiles/modular/changelog.gemfile"
|
|
44
|
+
|
|
42
45
|
# Optional
|
|
43
46
|
eval_gemfile "gemfiles/modular/optional.gemfile"
|
|
44
47
|
|
|
@@ -194,8 +194,7 @@ See [SECURITY.md][🔐security].
|
|
|
194
194
|
## 🤝 Contributing
|
|
195
195
|
|
|
196
196
|
If you need some ideas of where to help, you could work on adding more code coverage,
|
|
197
|
-
|
|
198
|
-
or use the gem and think about how it could be better.
|
|
197
|
+
check [issues][🤝gh-issues] or [PRs][🤝gh-pulls], or use the gem and think about how it could be better.
|
|
199
198
|
|
|
200
199
|
We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
|
|
201
200
|
|
|
@@ -234,11 +233,11 @@ Also see GitLab Contributors: [{KJ|README:GL_CONTRIBUTORS_URL}][🚎contributors
|
|
|
234
233
|
<details markdown="1">
|
|
235
234
|
<summary>⭐️ Star History</summary>
|
|
236
235
|
|
|
237
|
-
<a href="https://star-history.
|
|
236
|
+
<a href="https://star-history.dera.page/#{KJ|README:STAR_HISTORY_REPO}&type=date&legend=top-left">
|
|
238
237
|
<picture>
|
|
239
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://
|
|
240
|
-
<source media="(prefers-color-scheme: light)" srcset="https://
|
|
241
|
-
<img alt="Star History Chart" src="https://
|
|
238
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://star-history.dera.page/svg?repos={KJ|README:STAR_HISTORY_REPO}&type=date&theme=dark&legend=top-left" />
|
|
239
|
+
<source media="(prefers-color-scheme: light)" srcset="https://star-history.dera.page/svg?repos={KJ|README:STAR_HISTORY_REPO}&type=date&legend=top-left" />
|
|
240
|
+
<img alt="Star History Chart" src="https://star-history.dera.page/svg?repos={KJ|README:STAR_HISTORY_REPO}&type=date&legend=top-left" />
|
|
242
241
|
</picture>
|
|
243
242
|
</a>
|
|
244
243
|
|
|
@@ -118,7 +118,7 @@ Gem::Specification.new do |spec|
|
|
|
118
118
|
# and preferably a modular one (see gemfiles/modular/*.gemfile).
|
|
119
119
|
|
|
120
120
|
# Dev, Test, & Release Tasks
|
|
121
|
-
spec.add_development_dependency("kettle-dev", "~>
|
|
121
|
+
spec.add_development_dependency("kettle-dev", "~> 3.0", ">= 3.0.0") # ruby >= {KJ|MIN_TEST_RUBY}
|
|
122
122
|
|
|
123
123
|
# Security
|
|
124
124
|
spec.add_development_dependency("bundler-audit", "~> 0.9.3") # ruby >= 2.0.0
|
|
@@ -134,7 +134,7 @@ Gem::Specification.new do |spec|
|
|
|
134
134
|
spec.add_development_dependency("anonymous_loader", "~> 0.1", ">= 0.1.3") # ruby >= 2.2.0
|
|
135
135
|
spec.add_development_dependency("appraisal2", "~> 3.2", ">= 3.2.2") # ruby >= 1.8.7, for testing against multiple versions of dependencies
|
|
136
136
|
spec.add_development_dependency("kettle-test", "~> 2.0", ">= 2.0.19") # ruby >= {KJ|MIN_TEST_RUBY}
|
|
137
|
-
spec.add_development_dependency("turbo_tests2", "~> 3.2", ">= 3.2.
|
|
137
|
+
spec.add_development_dependency("turbo_tests2", "~> 3.2", ">= 3.2.5") # ruby >= 2.4.0, default kettle-test runner
|
|
138
138
|
|
|
139
139
|
# Releasing
|
|
140
140
|
spec.add_development_dependency("ruby-progressbar", "~> 1.13") # ruby >= 0
|
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
# Documentation
|
|
10
10
|
gem "kramdown", "~> 2.5", ">= 2.5.2", require: false # Ruby >= 2.5
|
|
11
11
|
gem "kramdown-parser-gfm", "~> 1.1", require: false # Ruby >= 2.3
|
|
12
|
-
gem "yaml-converter", "~> 0.2", ">= 0.2.
|
|
12
|
+
gem "yaml-converter", "~> 0.2", ">= 0.2.5", require: false # Ruby >= 3.2
|
|
13
13
|
gem "yard", "~> 0.9", ">= 0.9.45", require: false
|
|
14
14
|
gem "yard-junk", "~> 0.1", ">= 0.1.0", require: false # Ruby >= 3.1
|
|
15
15
|
gem "yard-lint", "~> 1.10", ">= 1.10.3", require: false # Ruby >= 3.3
|
|
16
16
|
gem "yard-relative_markdown_links", "~> 0.6", require: false
|
|
17
17
|
|
|
18
18
|
if ENV.fetch("GALTZO_FLOSS_DEV", "false").casecmp("false").zero?
|
|
19
|
-
gem "yard-fence", "~> 0.9", ">= 0.9.
|
|
20
|
-
gem "yard-timekeeper", "~> 0.2", ">= 0.2.
|
|
21
|
-
gem "yard-yaml", "~> 0.2", ">= 0.2.
|
|
19
|
+
gem "yard-fence", "~> 0.9", ">= 0.9.8", require: false # Ruby >= 3.2
|
|
20
|
+
gem "yard-timekeeper", "~> 0.2", ">= 0.2.6", require: false
|
|
21
|
+
gem "yard-yaml", "~> 0.2", ">= 0.2.5", require: false
|
|
22
22
|
else
|
|
23
23
|
eval_gemfile "documentation_local.gemfile"
|
|
24
24
|
end
|
|
@@ -17,7 +17,9 @@ platform :mri do
|
|
|
17
17
|
gem "rubocop-minitest", "~> 0.40", ">= 0.40.0"
|
|
18
18
|
gem "rubocop-on-rbs", "~> 2.0", ">= 2.0.0" # ruby >= 3.2.0
|
|
19
19
|
# gem "rubocop", "~> 1.73", ">= 1.73.2" # constrained by standard
|
|
20
|
-
gem "rubocop-packaging",
|
|
20
|
+
gem "rubocop-packaging",
|
|
21
|
+
github: "pboling/rubocop-packaging",
|
|
22
|
+
ref: "3539ba858d379740d638566faee9e56b2b854145"
|
|
21
23
|
gem "standard", "~> 1.56", ">= 1.56.0"
|
|
22
24
|
|
|
23
25
|
if ENV.fetch("RUBOCOP_LTS_LOCAL", "false").casecmp("false").zero?
|
|
@@ -17,6 +17,7 @@ structuredmerge_local_gems = %w[
|
|
|
17
17
|
citrus-toml-merge
|
|
18
18
|
dotenv-merge
|
|
19
19
|
go-merge
|
|
20
|
+
html-merge
|
|
20
21
|
json-merge
|
|
21
22
|
kettle-jem
|
|
22
23
|
kramdown-merge
|
|
@@ -43,7 +44,7 @@ kettle_dev_local_gems = %w[
|
|
|
43
44
|
{KJ|KETTLE_DEV_LOCAL_GEMS}
|
|
44
45
|
]
|
|
45
46
|
declared_gems = instance_variable_get(:@dependencies).to_a.map(&:name)
|
|
46
|
-
structuredmerge_local_gems_to_eval = structuredmerge_local_gems - %w[{KJ|PACKAGE_NAME}]
|
|
47
|
+
structuredmerge_local_gems_to_eval = structuredmerge_local_gems - %w[{KJ|PACKAGE_NAME}]
|
|
47
48
|
kettle_dev_local_gems_to_eval = kettle_dev_local_gems - %w[{KJ|PACKAGE_NAME}] - (declared_gems - %w[kettle-dev])
|
|
48
49
|
|
|
49
50
|
platform :mri do
|
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.add_dependency "{KJ|SHIMMED_GEM_NAME}"
|
|
31
31
|
|
|
32
32
|
# Dev, Test, & Release Tasks
|
|
33
|
-
spec.add_development_dependency("kettle-dev", "~>
|
|
33
|
+
spec.add_development_dependency("kettle-dev", "~> 3.0", ">= 3.0.0") # ruby >= {KJ|MIN_TEST_RUBY}
|
|
34
34
|
|
|
35
35
|
# Tasks
|
|
36
36
|
spec.add_development_dependency "rake", "~> 13.0"
|
data/lib/kettle/jem/version.rb
CHANGED
|
@@ -5,7 +5,7 @@ module Kettle
|
|
|
5
5
|
# Version namespace for this gem.
|
|
6
6
|
module Version
|
|
7
7
|
# Current gem version.
|
|
8
|
-
VERSION = "7.1.
|
|
8
|
+
VERSION = "7.1.3"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|