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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed9b5e3f454e4eab4631662f7f237fea159e15a2dbf45d1b8c2e9523edd64e1b
4
- data.tar.gz: 30800a571a4a0eecf7bf2f3a4d054ce46f725746dd654da3827629cce9ed9707
3
+ metadata.gz: 8b1f3c723c5e37ba3d79da4316fe87c4ebccf9726ef0b76ce58cb9b29ef0ff0c
4
+ data.tar.gz: 7f8108f711f47d797679cba4a1e0d2b5cf61f5e9de0597f33037fa19dfd3b819
5
5
  SHA512:
6
- metadata.gz: '09058fa93372cbc6a75699dad6d1999dcf85b13c632b9f55e5b99e45d138302e61dcc9320396952026e591681eeb0106f3cf7c603d999e16fb9e8feece1a851b'
7
- data.tar.gz: 4830309d44a827c313d791eda75b4aadf6cc66701ecad5306f85ad573c7d9e4627bd4c288296bf0eb6d97d5a6ab59fbfa76db990e1434ffd29c64893787af118
6
+ metadata.gz: 01ca39592f23ad28d03eb3456faa83e20e19ae693f648d9af1a90a7f4746d940d4c80ddbdae41ce99fd44923d8b7b7bc95eb040298d337c88b908694bcd13852
7
+ data.tar.gz: 483928857dd10c23a1fdf1dfe49ae2799724fe1e60b13f48394c8782290ae419ba468b20467c7bd16fc7c36537992c7312629c28986a9626689ac9c15d4d0c17
checksums.yaml.gz.sig CHANGED
Binary file
data/.env.local.example CHANGED
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # DO NOT EDIT THIS FILE
3
3
  #
4
- # COPT THIS FILE TO .env.local
4
+ # COPY THIS FILE TO .env.local
5
5
  #
6
6
  # That file is ignored by .gitignore. This file is not.
7
7
  #
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,10 +1,12 @@
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
6
7
  --charset utf-8
7
8
  --markup markdown
9
+ --markup-provider kramdown
8
10
  --output docs
9
11
  'lib/**/*.rb'
10
12
  -
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.51...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
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.51 - 2025-11-07
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,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 "yard-fence", "~> 0.4", require: false # Ruby >= 3.2
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
 
@@ -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.51"
9
+ VERSION = "1.1.53"
10
10
 
11
11
  module_function
12
12
 
data.tar.gz.sig CHANGED
@@ -1,2 +1,3 @@
1
- [�ȱB���B�������ޖ�}u{��s�h?+,�)�P.� ��C��-M�5�n�S.p��wk���n��Ǻ}�~�}����K����u�ڳ@����#A!�^͚�)Ǜ{C&����e[J�?�3 5G�e-�G B6܌}D����2�p���F��𤬬bwUb�ө Z!�V
2
- ֐�ZI����S7�U3��q��ç�)�{m���o s>-����iz�-������k�9���1��30�� Ø�I�kUi&�]���� �s#��N0��H��2'���h�7I�b��%>�8�÷/��>d�s5e�[`��7Uُ
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.51
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.51
399
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.51/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.51
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