kettle-dev 1.1.51 → 1.1.53
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/.env.local.example +1 -1
- data/.yardignore +5 -0
- data/.yardopts +2 -0
- data/CHANGELOG.md +33 -1
- data/Rakefile.example +1 -1
- data/gemfiles/modular/documentation.gemfile +3 -1
- data/lib/kettle/dev/tasks/template_task.rb +1 -0
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +3 -2
- 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: 8b1f3c723c5e37ba3d79da4316fe87c4ebccf9726ef0b76ce58cb9b29ef0ff0c
|
|
4
|
+
data.tar.gz: 7f8108f711f47d797679cba4a1e0d2b5cf61f5e9de0597f33037fa19dfd3b819
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01ca39592f23ad28d03eb3456faa83e20e19ae693f648d9af1a90a7f4746d940d4c80ddbdae41ce99fd44923d8b7b7bc95eb040298d337c88b908694bcd13852
|
|
7
|
+
data.tar.gz: 483928857dd10c23a1fdf1dfe49ae2799724fe1e60b13f48394c8782290ae419ba468b20467c7bd16fc7c36537992c7312629c28986a9626689ac9c15d4d0c17
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.env.local.example
CHANGED
data/.yardignore
ADDED
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,34 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.1.53] - 2025-11-10
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.53][1.1.53t]
|
|
36
|
+
- COVERAGE: 94.41% -- 4039/4278 lines in 26 files
|
|
37
|
+
- BRANCH COVERAGE: 78.93% -- 1663/2107 branches in 26 files
|
|
38
|
+
- 79.89% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Template .yardopts now includes yard-yaml plugin (for CITATION.cff)
|
|
43
|
+
- Template now includes a default `.yardopts` file
|
|
44
|
+
- Excludes *.gem, pkg/*.gem and .yardoc from documentation generation
|
|
45
|
+
|
|
46
|
+
## [1.1.52] - 2025-11-08
|
|
47
|
+
|
|
48
|
+
- TAG: [v1.1.52][1.1.52t]
|
|
49
|
+
- COVERAGE: 94.37% -- 4037/4278 lines in 26 files
|
|
50
|
+
- BRANCH COVERAGE: 78.93% -- 1663/2107 branches in 26 files
|
|
51
|
+
- 79.89% documented
|
|
52
|
+
|
|
53
|
+
### Added
|
|
54
|
+
|
|
55
|
+
- Update documentation
|
|
56
|
+
|
|
57
|
+
### Changed
|
|
58
|
+
|
|
59
|
+
- Upgrade to yard-fence v0.8.0
|
|
60
|
+
|
|
33
61
|
## [1.1.51] - 2025-11-07
|
|
34
62
|
|
|
35
63
|
- TAG: [v1.1.51][1.1.51t]
|
|
@@ -1330,7 +1358,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1330
1358
|
- Selecting will run the selected workflow via `act`
|
|
1331
1359
|
- This may move to its own gem in the future.
|
|
1332
1360
|
|
|
1333
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
|
1361
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.53...HEAD
|
|
1362
|
+
[1.1.53]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.52...v1.1.53
|
|
1363
|
+
[1.1.53t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.53
|
|
1364
|
+
[1.1.52]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.51...v1.1.52
|
|
1365
|
+
[1.1.52t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.52
|
|
1334
1366
|
[1.1.51]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.50...v1.1.51
|
|
1335
1367
|
[1.1.51t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.51
|
|
1336
1368
|
[1.1.50]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.49...v1.1.50
|
data/Rakefile.example
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
gem "kramdown", "~> 2.5", ">= 2.5.1", require: false # Ruby >= 2.5
|
|
5
5
|
gem "kramdown-parser-gfm", "~> 1.1", require: false # Ruby >= 2.3
|
|
6
6
|
gem "yard", "~> 0.9", ">= 0.9.37", require: false
|
|
7
|
-
gem "
|
|
7
|
+
gem "yaml-converter", "~> 0.1", require: false # Ruby >= 3.2
|
|
8
|
+
gem "yard-yaml", "~> 0.1", require: false # Ruby >= 3.2
|
|
9
|
+
gem "yard-fence", "~> 0.8", require: false # Ruby >= 3.2
|
|
8
10
|
gem "yard-junk", "~> 0.0", ">= 0.0.10", github: "pboling/yard-junk", branch: "next", require: false
|
|
9
11
|
gem "yard-relative_markdown_links", "~> 0.6", require: false
|
|
10
12
|
|
data/lib/kettle/dev/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
{��8Ǹ�̐f�οq��>��'�[�'�:V��O�6�!�;��:ibY�����j0�����Qۧ���
|
|
2
|
+
�2����/Φ��'{��ҹ���#�
|
|
3
|
+
��?�9<
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kettle-dev
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.53
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -266,6 +266,7 @@ files:
|
|
|
266
266
|
- ".simplecov"
|
|
267
267
|
- ".simplecov.example"
|
|
268
268
|
- ".tool-versions"
|
|
269
|
+
- ".yardignore"
|
|
269
270
|
- ".yardopts"
|
|
270
271
|
- Appraisal.root.gemfile
|
|
271
272
|
- Appraisals
|
|
@@ -395,10 +396,10 @@ licenses:
|
|
|
395
396
|
- MIT
|
|
396
397
|
metadata:
|
|
397
398
|
homepage_uri: https://kettle-dev.galtzo.com/
|
|
398
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.
|
|
399
|
-
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.
|
|
399
|
+
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.53
|
|
400
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.53/CHANGELOG.md
|
|
400
401
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
|
401
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
|
402
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.53
|
|
402
403
|
funding_uri: https://github.com/sponsors/pboling
|
|
403
404
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
|
404
405
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|