kettle-dev 1.1.40 → 1.1.42
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/commit-msg +31 -25
- data/CHANGELOG.md +29 -3
- data/Rakefile.example +1 -1
- data/lib/kettle/dev/modular_gemfiles.rb +1 -1
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 499f069d2f475110be07426218e16a83e77abcef78130994eab79e8ffbd1dfcf
|
|
4
|
+
data.tar.gz: 9e003a1fee82581f506db75e89389efa3bbe6fb37217e5ecfc068d858678de4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c58f42f602ea35c088aa27b8cec19f632d242b5cb78b7da6adb5d3a10e7b9d4e3700a54e32049f573c33d700cdaf847a4ec5c6dee47d70b045324787642a3656
|
|
7
|
+
data.tar.gz: 6d26ba7603bcb243169bccdcf4f5f4baae03ff5539893a94db9bd3e54d943ee9f375f9c44356a03261ee77eb4580f03505195400b464441e547894da54f3fbb8
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.git-hooks/commit-msg
CHANGED
|
@@ -16,33 +16,39 @@ begin
|
|
|
16
16
|
# Is the first character a GitMoji?
|
|
17
17
|
gitmoji_index = full_text =~ Gitmoji::Regex::REGEX
|
|
18
18
|
if gitmoji_index == 0
|
|
19
|
-
exit
|
|
19
|
+
exit(0)
|
|
20
20
|
else
|
|
21
|
-
denied =
|
|
22
|
-
Oh snap, think again...
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
| _ | | | | || || || || || | | |
|
|
26
|
-
| | || | ___| | || ___|| ||_ _|| ___|| _ || |
|
|
27
|
-
| |_||_ | |___ | || |___ | | | | | |___ | | | || |
|
|
28
|
-
| __ || ___| ___| || ___|| _| | | | ___|| |_| ||__|
|
|
29
|
-
| | | || |___ | || |___ | |_ | | | |___ | | __
|
|
30
|
-
|___| |_||_______||_______||_______||_______| |___| |_______||______| |__|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Did you forget to add a relevant gitmoji? (see https://gitmoji.dev/ for tools)
|
|
34
|
-
In this project, a Gitmoji must be the first grapheme of the commit message.
|
|
35
|
-
What's a grapheme?
|
|
36
|
-
A symbol rendered to be visually identifiable as a single character, but which may be composed of multiple Unicode code points)
|
|
37
|
-
Must match: #{Gitmoji::Regex::REGEX
|
|
38
|
-
#{
|
|
39
|
-
Example: git commit -m "✨ My excellent new feature"
|
|
40
|
-
|
|
41
|
-
EOM
|
|
21
|
+
denied = <<~EOM
|
|
22
|
+
Oh snap, think again...
|
|
23
|
+
|
|
24
|
+
______ _______ ___ _______ _______ _______ _______ ______ __
|
|
25
|
+
| _ | | | | || || || || || | | |
|
|
26
|
+
| | || | ___| | || ___|| ||_ _|| ___|| _ || |
|
|
27
|
+
| |_||_ | |___ | || |___ | | | | | |___ | | | || |
|
|
28
|
+
| __ || ___| ___| || ___|| _| | | | ___|| |_| ||__|
|
|
29
|
+
| | | || |___ | || |___ | |_ | | | |___ | | __
|
|
30
|
+
|___| |_||_______||_______||_______||_______| |___| |_______||______| |__|
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
Did you forget to add a relevant gitmoji? (see https://gitmoji.dev/ for tools)
|
|
34
|
+
In this project, a Gitmoji must be the first grapheme of the commit message.
|
|
35
|
+
What's a grapheme?
|
|
36
|
+
A symbol rendered to be visually identifiable as a single character, but which may be composed of multiple Unicode code points)
|
|
37
|
+
Must match: #{Gitmoji::Regex::REGEX}
|
|
38
|
+
#{"Found a gitmoji at character index #{gitmoji_index}... not good enough.\n" if gitmoji_index}
|
|
39
|
+
Example: git commit -m "✨ My excellent new feature"
|
|
40
|
+
|
|
41
|
+
EOM
|
|
42
42
|
puts denied
|
|
43
|
-
exit
|
|
43
|
+
exit(1)
|
|
44
44
|
end
|
|
45
45
|
rescue LoadError => e
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
failure = <<~EOM
|
|
47
|
+
gitmoji-regex gem not found: #{e.class}: #{e.message}.
|
|
48
|
+
Skipping gitmoji check and allowing commit to proceed.
|
|
49
|
+
Recommendation: add 'gitmoji-regex' to your development dependencies to enable this check.
|
|
50
|
+
|
|
51
|
+
EOM
|
|
52
|
+
warn(failure)
|
|
53
|
+
exit(0)
|
|
48
54
|
end
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,28 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.1.42] - 2025-10-29
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.42][1.1.42t]
|
|
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
|
+
- Exclude `gemfiles/modular/injected.gemfile` from the install/template process, as it is not relevant.
|
|
43
|
+
|
|
44
|
+
## [1.1.41] - 2025-10-28
|
|
45
|
+
|
|
46
|
+
- TAG: [v1.1.41][1.1.41t]
|
|
47
|
+
- COVERAGE: 96.06% -- 3950/4112 lines in 26 files
|
|
48
|
+
- BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
|
|
49
|
+
- 79.68% documented
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
|
|
53
|
+
- Improved formatting of errors
|
|
54
|
+
|
|
33
55
|
## [1.1.40] - 2025-10-28
|
|
34
56
|
|
|
35
57
|
- TAG: [v1.1.40][1.1.40t]
|
|
@@ -1018,8 +1040,8 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1018
1040
|
|
|
1019
1041
|
- TAG: [v1.0.10][1.0.10t]
|
|
1020
1042
|
- COVERAGE: 97.68% -- 1685/1725 lines in 17 files
|
|
1021
|
-
- BRANCH COVERAGE: 77.54% -- 618/797 branches in 17 files
|
|
1022
|
-
-
|
|
1043
|
+
- BRANCH COVERAGE: 77.54% -- 618/797 branches in 17 files
|
|
1044
|
+
- 95.35% documented
|
|
1023
1045
|
|
|
1024
1046
|
### Added
|
|
1025
1047
|
|
|
@@ -1192,7 +1214,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1192
1214
|
- Selecting will run the selected workflow via `act`
|
|
1193
1215
|
- This may move to its own gem in the future.
|
|
1194
1216
|
|
|
1195
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
|
1217
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.42...HEAD
|
|
1218
|
+
[1.1.42]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.41...v1.1.42
|
|
1219
|
+
[1.1.42t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.42
|
|
1220
|
+
[1.1.41]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.40...v1.1.41
|
|
1221
|
+
[1.1.41t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.41
|
|
1196
1222
|
[1.1.40]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.39...v1.1.40
|
|
1197
1223
|
[1.1.40t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.40
|
|
1198
1224
|
[1.1.39]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.38...v1.1.39
|
data/Rakefile.example
CHANGED
|
@@ -21,11 +21,11 @@ module Kettle
|
|
|
21
21
|
# @return [void]
|
|
22
22
|
def sync!(helpers:, project_root:, gem_checkout_root:, min_ruby: nil)
|
|
23
23
|
# 4a) gemfiles/modular/*.gemfile except style.gemfile (handled below)
|
|
24
|
+
# Note: `injected.gemfile` is only intended for testing this gem, and isn't even actively used there. It is not part of the template.
|
|
24
25
|
modular_gemfiles = %w[
|
|
25
26
|
coverage
|
|
26
27
|
debug
|
|
27
28
|
documentation
|
|
28
|
-
injected
|
|
29
29
|
optional
|
|
30
30
|
runtime_heads
|
|
31
31
|
x_std_libs
|
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.42
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -397,10 +397,10 @@ licenses:
|
|
|
397
397
|
- MIT
|
|
398
398
|
metadata:
|
|
399
399
|
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.
|
|
400
|
+
source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.42
|
|
401
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.42/CHANGELOG.md
|
|
402
402
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
|
|
403
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.
|
|
403
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.42
|
|
404
404
|
funding_uri: https://github.com/sponsors/pboling
|
|
405
405
|
wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
|
|
406
406
|
news_uri: https://www.railsbling.com/tags/kettle-dev
|
metadata.gz.sig
CHANGED
|
Binary file
|