kettle-dev 1.1.42 → 1.1.44
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/.git-hooks/prepare-commit-msg +3 -15
- data/CHANGELOG.md +32 -1
- data/CONTRIBUTING.md +1 -3
- data/CONTRIBUTING.md.example +1 -3
- data/Rakefile.example +1 -1
- data/kettle-dev.gemspec.example +1 -2
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -5
- metadata.gz.sig +0 -0
- data/.git-hooks/prepare-commit-msg.example +0 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68f384099e73116f4cc5a9134eaa5e41aeca742df8e65aa9e1cd6b27295d5a13
|
|
4
|
+
data.tar.gz: 92adc9e50e738ce72b44877ec5a213316c2981a618896e30a6c9e507b855f002
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4acafb849ccdc44a53928652265aa983e099ead3cd63ebed3c0169c1cbb5d1278c95e4b32ed606f874bb87fd7a732b24125f6979df36ce5d4b346d5c4f027431
|
|
7
|
+
data.tar.gz: c954de160931c716a46bc8859e3d90ef59e63186326d3d3b5e43c1005284a689065d4c7dad41c81a029493ff825a07c066e671bd99701152b37d13648de5d291
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -3,18 +3,6 @@
|
|
|
3
3
|
# Fail on error and unset variables
|
|
4
4
|
set -eu
|
|
5
5
|
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
# Run the Ruby hook within the direnv context (if available),
|
|
10
|
-
# so ENV from .envrc/.env.local at project root is loaded.
|
|
11
|
-
# One of the things .envrc needs to do is add $PROJECT_ROOT/bin/ to the path.
|
|
12
|
-
# You should have this line at the top of .envrc
|
|
13
|
-
# PATH_add bin
|
|
14
|
-
# NOTE: this project needs to also add exe as well,
|
|
15
|
-
# but other libraries won't generally need to do that.
|
|
16
|
-
if command -v direnv >/dev/null 2>&1; then
|
|
17
|
-
exec direnv exec "$PROJECT_ROOT" "kettle-commit-msg" "$@"
|
|
18
|
-
else
|
|
19
|
-
raise "direnv not found. Local development of this project ($PROJECT_ROOT) with tools from the kettle-dev gem may not work properly. Please run 'brew install direnv'."
|
|
20
|
-
fi
|
|
6
|
+
# We are not using direnv exec here because mise and direnv can result in conflicting PATH settings:
|
|
7
|
+
# See: https://mise.jdx.dev/direnv.html
|
|
8
|
+
exec "kettle-commit-msg" "$@"
|
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.44] - 2025-10-31
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.44][1.1.44t]
|
|
36
|
+
- COVERAGE: 96.04% -- 3949/4112 lines in 26 files
|
|
37
|
+
- BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
|
|
38
|
+
- 79.68% documented
|
|
39
|
+
|
|
40
|
+
### Removed
|
|
41
|
+
|
|
42
|
+
- `exe/*` from `spec.files`, because it is redundant with `spec.bindir` & `spec.executables`
|
|
43
|
+
- prepare-commit-msg.example: no longer needed
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- prepare-commit-msg git hook: incompatibility between direnv and mise by removing `direnv exec`
|
|
48
|
+
|
|
49
|
+
## [1.1.43] - 2025-10-30
|
|
50
|
+
|
|
51
|
+
- TAG: [v1.1.43][1.1.43t]
|
|
52
|
+
- COVERAGE: 96.06% -- 3950/4112 lines in 26 files
|
|
53
|
+
- BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
|
|
54
|
+
- 79.68% documented
|
|
55
|
+
|
|
56
|
+
### Fixed
|
|
57
|
+
|
|
58
|
+
- typos in CONTRIBUTING.md used for templating
|
|
59
|
+
|
|
33
60
|
## [1.1.42] - 2025-10-29
|
|
34
61
|
|
|
35
62
|
- TAG: [v1.1.42][1.1.42t]
|
|
@@ -1214,7 +1241,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1214
1241
|
- Selecting will run the selected workflow via `act`
|
|
1215
1242
|
- This may move to its own gem in the future.
|
|
1216
1243
|
|
|
1217
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
|
1244
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.44...HEAD
|
|
1245
|
+
[1.1.44]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.43...v1.1.44
|
|
1246
|
+
[1.1.44t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.44
|
|
1247
|
+
[1.1.43]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.42...v1.1.43
|
|
1248
|
+
[1.1.43t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.43
|
|
1218
1249
|
[1.1.42]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.41...v1.1.42
|
|
1219
1250
|
[1.1.42t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.42
|
|
1220
1251
|
[1.1.41]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.40...v1.1.41
|
data/CONTRIBUTING.md
CHANGED
|
@@ -118,10 +118,8 @@ bundle exec rake test
|
|
|
118
118
|
|
|
119
119
|
### Spec organization (required)
|
|
120
120
|
|
|
121
|
-
- One spec file per class/module. For each class or module under `lib/`, keep all of its unit tests in a single spec file under `spec/` that mirrors the path and file name exactly: `lib/kettle/dev/
|
|
122
|
-
- Never add a second spec file for the same class/module. Examples of disallowed names: `*_more_spec.rb`, `*_extra_spec.rb`, `*_status_spec.rb`, or any other suffix that still targets the same class. If you find yourself wanting a second file, merge those examples into the canonical spec file for that class/module.
|
|
121
|
+
- One spec file per class/module. For each class or module under `lib/`, keep all of its unit tests in a single spec file under `spec/` that mirrors the path and file name exactly: `lib/kettle/dev/my_class.rb` -> `spec/kettle/dev/my_class_spec.rb`.
|
|
123
122
|
- Exception: Integration specs that intentionally span multiple classes. Place these under `spec/integration/` (or a clearly named integration folder), and do not directly mirror a single class. Name them after the scenario, not a class.
|
|
124
|
-
- Migration note: If a duplicate spec file exists, move all examples into the canonical file and delete the duplicate. Do not leave stubs or empty files behind.
|
|
125
123
|
|
|
126
124
|
## Lint It
|
|
127
125
|
|
data/CONTRIBUTING.md.example
CHANGED
|
@@ -109,10 +109,8 @@ bundle exec rake test
|
|
|
109
109
|
|
|
110
110
|
### Spec organization (required)
|
|
111
111
|
|
|
112
|
-
- One spec file per class/module. For each class or module under `lib/`, keep all of its unit tests in a single spec file under `spec/` that mirrors the path and file name exactly: `lib/kettle/dev/
|
|
113
|
-
- Never add a second spec file for the same class/module. Examples of disallowed names: `*_more_spec.rb`, `*_extra_spec.rb`, `*_status_spec.rb`, or any other suffix that still targets the same class. If you find yourself wanting a second file, merge those examples into the canonical spec file for that class/module.
|
|
112
|
+
- One spec file per class/module. For each class or module under `lib/`, keep all of its unit tests in a single spec file under `spec/` that mirrors the path and file name exactly: `lib/kettle/dev/my_class.rb` -> `spec/kettle/dev/my_class_spec.rb`.
|
|
114
113
|
- Exception: Integration specs that intentionally span multiple classes. Place these under `spec/integration/` (or a clearly named integration folder), and do not directly mirror a single class. Name them after the scenario, not a class.
|
|
115
|
-
- Migration note: If a duplicate spec file exists, move all examples into the canonical file and delete the duplicate. Do not leave stubs or empty files behind.
|
|
116
114
|
|
|
117
115
|
## Lint It
|
|
118
116
|
|
data/Rakefile.example
CHANGED
data/kettle-dev.gemspec.example
CHANGED
|
@@ -60,8 +60,7 @@ Gem::Specification.new do |spec|
|
|
|
60
60
|
|
|
61
61
|
# Specify which files are part of the released package.
|
|
62
62
|
spec.files = Dir[
|
|
63
|
-
#
|
|
64
|
-
"exe/*",
|
|
63
|
+
# Code / tasks / data (NOTE: exe/ is specified via spec.bindir and spec.executables below)
|
|
65
64
|
"lib/**/*.rb",
|
|
66
65
|
"lib/**/*.rake",
|
|
67
66
|
# Signatures
|
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.44
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -223,7 +223,6 @@ files:
|
|
|
223
223
|
- ".git-hooks/commit-subjects-goalie.txt"
|
|
224
224
|
- ".git-hooks/footer-template.erb.txt"
|
|
225
225
|
- ".git-hooks/prepare-commit-msg"
|
|
226
|
-
- ".git-hooks/prepare-commit-msg.example"
|
|
227
226
|
- ".github/.codecov.yml.example"
|
|
228
227
|
- ".github/FUNDING.yml"
|
|
229
228
|
- ".github/FUNDING.yml.no-osc.example"
|
|
@@ -397,10 +396,10 @@ licenses:
|
|
|
397
396
|
- MIT
|
|
398
397
|
metadata:
|
|
399
398
|
homepage_uri: https://kettle-dev.galtzo.com/
|
|
400
|
-
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.
|
|
401
|
-
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.44
|
|
400
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.44/CHANGELOG.md
|
|
402
401
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
|
403
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
|
402
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.44
|
|
404
403
|
funding_uri: https://github.com/sponsors/pboling
|
|
405
404
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
|
406
405
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
# Fail on error and unset variables
|
|
4
|
-
set -eu
|
|
5
|
-
|
|
6
|
-
# Determine project root as the parent directory of this hook script
|
|
7
|
-
PROJECT_ROOT="$(CDPATH= cd -- "$(dirname -- "$0")"/.. && pwd)"
|
|
8
|
-
|
|
9
|
-
# Run the Ruby hook within the direnv context (if available),
|
|
10
|
-
# so ENV from .envrc/.env.local at project root is loaded.
|
|
11
|
-
# One of the things .envrc needs to do is add $PROJECT_ROOT/bin/ to the path.
|
|
12
|
-
# You should have this line at the top of .envrc
|
|
13
|
-
# PATH_add bin
|
|
14
|
-
# NOTE: If this project ships exe scripts it should also add that.
|
|
15
|
-
if command -v direnv >/dev/null 2>&1; then
|
|
16
|
-
exec direnv exec "$PROJECT_ROOT" "kettle-commit-msg" "$@"
|
|
17
|
-
else
|
|
18
|
-
raise "direnv not found. Local development of this project ($PROJECT_ROOT) with tools from the kettle-dev gem may not work properly. Please run 'brew install direnv'."
|
|
19
|
-
fi
|