kettle-dev 1.1.50 → 1.1.51
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/.envrc +1 -1
- data/.github/workflows/coverage.yml +2 -2
- data/CHANGELOG.md +15 -1
- data/Rakefile.example +1 -1
- data/lib/kettle/dev/tasks/template_task.rb +0 -1
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -5
- metadata.gz.sig +0 -0
- data/.yard_gfm_support.rb +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed9b5e3f454e4eab4631662f7f237fea159e15a2dbf45d1b8c2e9523edd64e1b
|
|
4
|
+
data.tar.gz: 30800a571a4a0eecf7bf2f3a4d054ce46f725746dd654da3827629cce9ed9707
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09058fa93372cbc6a75699dad6d1999dcf85b13c632b9f55e5b99e45d138302e61dcc9320396952026e591681eeb0106f3cf7c603d999e16fb9e8feece1a851b'
|
|
7
|
+
data.tar.gz: 4830309d44a827c313d791eda75b4aadf6cc66701ecad5306f85ad573c7d9e4627bd4c288296bf0eb6d97d5a6ab59fbfa76db990e1434ffd29c64893787af118
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
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=
|
|
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:
|
|
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
|
|
118
|
+
thresholds: '92 76'
|
|
119
119
|
continue-on-error: ${{ matrix.experimental != 'false' }}
|
|
120
120
|
|
|
121
121
|
- name: Add Coverage PR Comment
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,18 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.1.51] - 2025-11-07
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.51][1.1.51t]
|
|
36
|
+
- COVERAGE: 94.41% -- 4039/4278 lines in 26 files
|
|
37
|
+
- BRANCH COVERAGE: 78.88% -- 1662/2107 branches in 26 files
|
|
38
|
+
- 79.89% documented
|
|
39
|
+
|
|
40
|
+
### Removed
|
|
41
|
+
|
|
42
|
+
- unused file removed from template
|
|
43
|
+
- functionality was replaced by yard-fence gem
|
|
44
|
+
|
|
33
45
|
## [1.1.50] - 2025-11-07
|
|
34
46
|
|
|
35
47
|
- TAG: [v1.1.50][1.1.50t]
|
|
@@ -1318,7 +1330,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1318
1330
|
- Selecting will run the selected workflow via `act`
|
|
1319
1331
|
- This may move to its own gem in the future.
|
|
1320
1332
|
|
|
1321
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
|
1333
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.51...HEAD
|
|
1334
|
+
[1.1.51]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.50...v1.1.51
|
|
1335
|
+
[1.1.51t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.51
|
|
1322
1336
|
[1.1.50]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.49...v1.1.50
|
|
1323
1337
|
[1.1.50t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.50
|
|
1324
1338
|
[1.1.49]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.48...v1.1.49
|
data/Rakefile.example
CHANGED
data/lib/kettle/dev/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.1.51
|
|
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.
|
|
400
|
-
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.
|
|
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
|
|
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.
|
|
401
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.51
|
|
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
|
-
)
|