kettle-dev 1.1.42 → 1.1.43
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/CHANGELOG.md +14 -1
- data/CONTRIBUTING.md +1 -3
- data/CONTRIBUTING.md.example +1 -3
- data/Rakefile.example +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: ac77166c8b0044ae5c633d764a973644e9b257e1210a734294aed789b9cec204
|
|
4
|
+
data.tar.gz: a667e376465629766f0878928dc9e7e20e3df6fe370fdc947f14ed135cc3c3c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2290cf31bc21c598a0c5febfffbc98aed90124baab41222a98fe769582e10079a968951ca5b80853866b30227767c13e957438b56c742694cd6fd764f66b14d9
|
|
7
|
+
data.tar.gz: e17bcba20098bec425915bca6637934eee575b442bc7526ac7bba54d23596bfd5429b5f07587da81869d5bcdac5af88fe351af201fb035e14662e31ddff3f731
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.1.43] - 2025-10-30
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.43][1.1.43t]
|
|
36
|
+
- COVERAGE: 96.06% -- 3950/4112 lines in 26 files
|
|
37
|
+
- BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
|
|
38
|
+
- 79.68% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- typos in CONTRIBUTING.md used for templating
|
|
43
|
+
|
|
33
44
|
## [1.1.42] - 2025-10-29
|
|
34
45
|
|
|
35
46
|
- TAG: [v1.1.42][1.1.42t]
|
|
@@ -1214,7 +1225,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
1214
1225
|
- Selecting will run the selected workflow via `act`
|
|
1215
1226
|
- This may move to its own gem in the future.
|
|
1216
1227
|
|
|
1217
|
-
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.
|
|
1228
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.43...HEAD
|
|
1229
|
+
[1.1.43]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.42...v1.1.43
|
|
1230
|
+
[1.1.43t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.43
|
|
1218
1231
|
[1.1.42]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.41...v1.1.42
|
|
1219
1232
|
[1.1.42t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.42
|
|
1220
1233
|
[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/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.43
|
|
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.43
|
|
401
|
+
changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.43/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.43
|
|
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
|