kettle-dev 1.1.52 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87c99048bd90c913ad0c434aebd4fc71e5316f5103c9b4fdd180a7c646185de1
4
- data.tar.gz: 99b59319a70cca4a02d9c882de64a320daed1622e59f6380e17057cde0773aba
3
+ metadata.gz: 8b1f3c723c5e37ba3d79da4316fe87c4ebccf9726ef0b76ce58cb9b29ef0ff0c
4
+ data.tar.gz: 7f8108f711f47d797679cba4a1e0d2b5cf61f5e9de0597f33037fa19dfd3b819
5
5
  SHA512:
6
- metadata.gz: d46c413bd110d32f2414ea31bea018d2244f0e98a816b81ffc32d540ea15535ccb342acccb325b27272b6598e0b7b6dae8f360e20010efd63df7bd2171ac7580
7
- data.tar.gz: cf25e568a871284cbbb955bcd77b66507504999634d15704d9cb2b4f2b57ebe48b991de29cea3320e0031c105efb4c20f84cb97784c45485381aeeb25585c4b4
6
+ metadata.gz: 01ca39592f23ad28d03eb3456faa83e20e19ae693f648d9af1a90a7f4746d940d4c80ddbdae41ce99fd44923d8b7b7bc95eb040298d337c88b908694bcd13852
7
+ data.tar.gz: 483928857dd10c23a1fdf1dfe49ae2799724fe1e60b13f48394c8782290ae419ba468b20467c7bd16fc7c36537992c7312629c28986a9626689ac9c15d4d0c17
checksums.yaml.gz.sig CHANGED
Binary file
data/.yardignore ADDED
@@ -0,0 +1,5 @@
1
+ # Ignore built gem artifacts and package dir
2
+ pkg/*.gem
3
+ *.gem
4
+ # Also ignore yardoc cache
5
+ .yardoc/
data/.yardopts CHANGED
@@ -1,5 +1,6 @@
1
1
  --plugin fence
2
2
  -e yard/fence/hoist.rb
3
+ --plugin yaml
3
4
  --plugin junk
4
5
  --plugin relative_markdown_links
5
6
  --readme tmp/yard-fence/README.md
data/CHANGELOG.md CHANGED
@@ -30,6 +30,19 @@ 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
+
33
46
  ## [1.1.52] - 2025-11-08
34
47
 
35
48
  - TAG: [v1.1.52][1.1.52t]
@@ -1345,7 +1358,9 @@ Please file a bug if you notice a violation of semantic versioning.
1345
1358
  - Selecting will run the selected workflow via `act`
1346
1359
  - This may move to its own gem in the future.
1347
1360
 
1348
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.52...HEAD
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
1349
1364
  [1.1.52]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.51...v1.1.52
1350
1365
  [1.1.52t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.52
1351
1366
  [1.1.51]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.50...v1.1.51
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.52 - 2025-11-08
3
+ # kettle-dev Rakefile v1.1.53 - 2025-11-10
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -4,6 +4,8 @@
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 "yaml-converter", "~> 0.1", require: false # Ruby >= 3.2
8
+ gem "yard-yaml", "~> 0.1", require: false # Ruby >= 3.2
7
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
@@ -403,6 +403,7 @@ module Kettle
403
403
  .simplecov
404
404
  .tool-versions
405
405
  .yardopts
406
+ .yardignore
406
407
  Appraisal.root.gemfile
407
408
  Appraisals
408
409
  CHANGELOG.md
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.1.52"
9
+ VERSION = "1.1.53"
10
10
 
11
11
  module_function
12
12
 
data.tar.gz.sig CHANGED
Binary file
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.52
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.52
399
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.52/CHANGELOG.md
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.52
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