kettle-dev 1.1.50 → 1.1.52

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: f61bde95a7e5a0632485eaa2dbfab9a3c0d912c54aa84985419988d727cd9bb5
4
- data.tar.gz: 9a060150986a8c0906718a593e4b9e1039197ee8d3a813b372a0a9a903a5816f
3
+ metadata.gz: 87c99048bd90c913ad0c434aebd4fc71e5316f5103c9b4fdd180a7c646185de1
4
+ data.tar.gz: 99b59319a70cca4a02d9c882de64a320daed1622e59f6380e17057cde0773aba
5
5
  SHA512:
6
- metadata.gz: ec46717666f1ed2f26d4eace245ae2378ec403651809e0ab97bc55fd7e354678cb25ee93e68c05a3e9c29936bb603304a5ace6af1715221e85e0615c642c1fea
7
- data.tar.gz: 2a9771deacba1a89948b7965eac2846362aeea8f8617f59bf89baf1ce1d517cd65b83718adb0647f430f4f7c3059ecc72894691d2667e32fa73373f7da912df6
6
+ metadata.gz: d46c413bd110d32f2414ea31bea018d2244f0e98a816b81ffc32d540ea15535ccb342acccb325b27272b6598e0b7b6dae8f360e20010efd63df7bd2171ac7580
7
+ data.tar.gz: cf25e568a871284cbbb955bcd77b66507504999634d15704d9cb2b4f2b57ebe48b991de29cea3320e0031c105efb4c20f84cb97784c45485381aeeb25585c4b4
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/.envrc CHANGED
@@ -21,7 +21,7 @@ export K_SOUP_COV_DO=true # Means you want code coverage
21
21
  export K_SOUP_COV_COMMAND_NAME="Test Coverage"
22
22
  # Available formats are html, xml, rcov, lcov, json, tty
23
23
  export K_SOUP_COV_FORMATTERS="html,xml,rcov,lcov,json,tty"
24
- export K_SOUP_COV_MIN_BRANCH=77 # Means you want to enforce X% branch coverage
24
+ export K_SOUP_COV_MIN_BRANCH=76 # Means you want to enforce X% branch coverage
25
25
  export K_SOUP_COV_MIN_LINE=92 # Means you want to enforce X% line coverage
26
26
  export K_SOUP_COV_MIN_HARD=true # Means you want the build to fail if the coverage thresholds are not met
27
27
  export K_SOUP_COV_MULTI_FORMATTERS=true
@@ -6,7 +6,7 @@ permissions:
6
6
  id-token: write
7
7
 
8
8
  env:
9
- K_SOUP_COV_MIN_BRANCH: 77
9
+ K_SOUP_COV_MIN_BRANCH: 76
10
10
  K_SOUP_COV_MIN_LINE: 92
11
11
  K_SOUP_COV_MIN_HARD: true
12
12
  K_SOUP_COV_FORMATTERS: "xml,rcov,lcov,tty"
@@ -115,7 +115,7 @@ jobs:
115
115
  hide_complexity: true
116
116
  indicators: true
117
117
  output: both
118
- thresholds: '92 77'
118
+ thresholds: '92 76'
119
119
  continue-on-error: ${{ matrix.experimental != 'false' }}
120
120
 
121
121
  - name: Add Coverage PR Comment
data/.yardopts CHANGED
@@ -5,6 +5,7 @@
5
5
  --readme tmp/yard-fence/README.md
6
6
  --charset utf-8
7
7
  --markup markdown
8
+ --markup-provider kramdown
8
9
  --output docs
9
10
  'lib/**/*.rb'
10
11
  -
data/CHANGELOG.md CHANGED
@@ -30,6 +30,33 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.1.52] - 2025-11-08
34
+
35
+ - TAG: [v1.1.52][1.1.52t]
36
+ - COVERAGE: 94.37% -- 4037/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
+ - Update documentation
43
+
44
+ ### Changed
45
+
46
+ - Upgrade to yard-fence v0.8.0
47
+
48
+ ## [1.1.51] - 2025-11-07
49
+
50
+ - TAG: [v1.1.51][1.1.51t]
51
+ - COVERAGE: 94.41% -- 4039/4278 lines in 26 files
52
+ - BRANCH COVERAGE: 78.88% -- 1662/2107 branches in 26 files
53
+ - 79.89% documented
54
+
55
+ ### Removed
56
+
57
+ - unused file removed from template
58
+ - functionality was replaced by yard-fence gem
59
+
33
60
  ## [1.1.50] - 2025-11-07
34
61
 
35
62
  - TAG: [v1.1.50][1.1.50t]
@@ -1318,7 +1345,11 @@ Please file a bug if you notice a violation of semantic versioning.
1318
1345
  - Selecting will run the selected workflow via `act`
1319
1346
  - This may move to its own gem in the future.
1320
1347
 
1321
- [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.50...HEAD
1348
+ [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.52...HEAD
1349
+ [1.1.52]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.51...v1.1.52
1350
+ [1.1.52t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.52
1351
+ [1.1.51]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.50...v1.1.51
1352
+ [1.1.51t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.51
1322
1353
  [1.1.50]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.49...v1.1.50
1323
1354
  [1.1.50t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.50
1324
1355
  [1.1.49]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.48...v1.1.49
data/Rakefile.example CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # kettle-dev Rakefile v1.1.50 - 2025-11-07
3
+ # kettle-dev Rakefile v1.1.52 - 2025-11-08
4
4
  # Ruby 2.3 (Safe Navigation) or higher required
5
5
  #
6
6
  # MIT License (see License.txt)
@@ -4,7 +4,7 @@
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 "yard-fence", "~> 0.8", require: false # Ruby >= 3.2
8
8
  gem "yard-junk", "~> 0.0", ">= 0.0.10", github: "pboling/yard-junk", branch: "next", require: false
9
9
  gem "yard-relative_markdown_links", "~> 0.6", require: false
10
10
 
@@ -402,7 +402,6 @@ module Kettle
402
402
  .rubocop_rspec.yml
403
403
  .simplecov
404
404
  .tool-versions
405
- .yard_gfm_support.rb
406
405
  .yardopts
407
406
  Appraisal.root.gemfile
408
407
  Appraisals
@@ -6,7 +6,7 @@ module Kettle
6
6
  module Version
7
7
  # The gem version.
8
8
  # @return [String]
9
- VERSION = "1.1.50"
9
+ VERSION = "1.1.52"
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.50
4
+ version: 1.1.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -266,7 +266,6 @@ files:
266
266
  - ".simplecov"
267
267
  - ".simplecov.example"
268
268
  - ".tool-versions"
269
- - ".yard_gfm_support.rb"
270
269
  - ".yardopts"
271
270
  - Appraisal.root.gemfile
272
271
  - Appraisals
@@ -396,10 +395,10 @@ licenses:
396
395
  - MIT
397
396
  metadata:
398
397
  homepage_uri: https://kettle-dev.galtzo.com/
399
- source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.50
400
- changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.50/CHANGELOG.md
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
401
400
  bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
402
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.50
401
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.52
403
402
  funding_uri: https://github.com/sponsors/pboling
404
403
  wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
405
404
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file
data/.yard_gfm_support.rb DELETED
@@ -1,22 +0,0 @@
1
- # Gratefully and liberally taken from the MIT-licensed https://github.com/bensheldon/good_job/pull/113/files
2
- require "kramdown"
3
- require "kramdown-parser-gfm"
4
-
5
- # Custom markup provider class that always renders Kramdown using GFM (Github Flavored Markdown).
6
- # GFM is needed to render markdown tables and fenced code blocks in the README.
7
- class KramdownGfmDocument < Kramdown::Document
8
- def initialize(source, options = {})
9
- options[:input] = "GFM" unless options.key?(:input)
10
- super(source, options)
11
- end
12
- end
13
-
14
- # Insert the new provider as the highest priority option for Markdown.
15
- # See:
16
- # - https://github.com/lsegal/yard/issues/1157
17
- # - https://github.com/lsegal/yard/issues/1017
18
- # - https://github.com/lsegal/yard/blob/main/lib/yard/templates/helpers/markup_helper.rb
19
- YARD::Templates::Helpers::MarkupHelper::MARKUP_PROVIDERS[:markdown].insert(
20
- 0,
21
- {const: "KramdownGfmDocument"},
22
- )