kettle-soup-cover 1.1.0 → 1.1.1
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 +45 -10
- data/README.md +1 -1
- data/exe/kettle-soup-cover +0 -0
- data/lib/kettle/soup/cover/config.rb +6 -1
- data/lib/kettle/soup/cover/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: 6f3cdb3eb563bc8ac3bfb357a26a454e614ad9afd039ba06d43e2f487df4805e
|
|
4
|
+
data.tar.gz: 79e53afd8fb511dbf5e5327dde4f2f5a1f758d4ef7ffa7bcc8333bac156b5138
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6db36ecda5f6c7d85e386d94693a275159fe2287fbbca2efa89174ecddc951bba311d4fc2a4c13e812b68f346bf06bb133d5343fb4b531bb7aff77536ed9b091
|
|
7
|
+
data.tar.gz: dc45507aea4a2215b2085a5ca7637713f816a5f75f69fcdf7f579065a8502edd2cfe38973774f5df1098954ff485edbfcf7640921e29b0cdb78c48ad2058809e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -20,6 +20,43 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
20
20
|
|
|
21
21
|
### Added
|
|
22
22
|
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [1.1.1] - 2025-12-28
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.1][1.1.1t]
|
|
36
|
+
- COVERAGE: 93.62% -- 132/141 lines in 10 files
|
|
37
|
+
- BRANCH COVERAGE: 50.00% -- 15/30 branches in 10 files
|
|
38
|
+
- 15.56% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Added regression tests for `MIN_COVERAGE_HARD` behavior
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
|
|
46
|
+
- **BUGFIX**: `K_SOUP_COV_MIN_HARD=false` now correctly disables minimum coverage enforcement in CI
|
|
47
|
+
- Previously, the condition `IS_CI || MIN_COVERAGE_HARD` meant minimum coverage was always enforced in CI
|
|
48
|
+
- Now `MIN_COVERAGE_HARD` takes precedence: if explicitly set to `false`, minimum coverage is not enforced
|
|
49
|
+
- The default behavior is unchanged: in CI without explicit setting, minimum coverage is still enforced
|
|
50
|
+
|
|
51
|
+
## [1.1.0] - 2025-12-28
|
|
52
|
+
|
|
53
|
+
- TAG: [v1.1.0][1.1.0t]
|
|
54
|
+
- COVERAGE: 93.62% -- 132/141 lines in 10 files
|
|
55
|
+
- BRANCH COVERAGE: 53.33% -- 16/30 branches in 10 files
|
|
56
|
+
- 15.56% documented
|
|
57
|
+
|
|
58
|
+
### Added
|
|
59
|
+
|
|
23
60
|
- When `ENV["MAX_ROWS"] == "0"`, explicitly, skip simplecov-console TTY output.
|
|
24
61
|
- Script `exe/kettle-soup-cover` generates coverage report
|
|
25
62
|
- defaults to reading `$K_SOUP_COV_DIR/coverage.json`
|
|
@@ -34,7 +71,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
34
71
|
- Set `K_SOUP_COV_USE_MERGING=false` to disable
|
|
35
72
|
- Aggregate coverage from multiple test runs (e.g., FFI specs, integration specs, unit specs) when uniquely named:
|
|
36
73
|
- ```rake
|
|
74
|
+
|
|
37
75
|
# Matrix checks will run in between FFI and MRI
|
|
76
|
+
|
|
38
77
|
desc("Run Backend Matrix Specs")
|
|
39
78
|
RSpec::Core::RakeTask.new(:backend_matrix_specs) do |t|
|
|
40
79
|
t.pattern = "./spec_matrix/**/*_spec.rb"
|
|
@@ -49,14 +88,6 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
49
88
|
- Sufficient for most test suites to complete all split tasks
|
|
50
89
|
- Set `K_SOUP_COV_MERGE_TIMEOUT` to override
|
|
51
90
|
|
|
52
|
-
### Deprecated
|
|
53
|
-
|
|
54
|
-
### Removed
|
|
55
|
-
|
|
56
|
-
### Fixed
|
|
57
|
-
|
|
58
|
-
### Security
|
|
59
|
-
|
|
60
91
|
## [1.0.10] - 2025-07-15
|
|
61
92
|
|
|
62
93
|
- COVERAGE: 93.43% -- 128/137 lines in 10 files
|
|
@@ -258,7 +289,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
258
289
|
## [0.1.0] - 2023-10-17
|
|
259
290
|
- Initial release
|
|
260
291
|
|
|
261
|
-
[Unreleased]: https://
|
|
292
|
+
[Unreleased]: https://github.com/kettle-rb/kettle-soup-cover/compare/v1.1.1...HEAD
|
|
293
|
+
[1.1.1]: https://github.com/kettle-rb/kettle-soup-cover/compare/v1.1.0...v1.1.1
|
|
294
|
+
[1.1.1t]: https://github.com/kettle-rb/kettle-soup-cover/releases/tag/v1.1.1
|
|
295
|
+
[1.1.0]: https://github.com/kettle-rb/kettle-soup-cover/compare/v1.0.10...v1.1.0
|
|
296
|
+
[1.1.0t]: https://github.com/kettle-rb/kettle-soup-cover/releases/tag/v1.1.0
|
|
262
297
|
[1.0.10]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.9...v1.0.10
|
|
263
298
|
[1.0.9]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.8...v1.0.9
|
|
264
299
|
[1.0.8]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.7...v1.0.8
|
|
@@ -270,4 +305,4 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
270
305
|
[1.0.2]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.1...v1.0.2
|
|
271
306
|
[1.0.1]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.0...v1.0.1
|
|
272
307
|
[1.0.0]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v0.1.0...v1.0.0
|
|
273
|
-
[0.1.0]: https://
|
|
308
|
+
[0.1.0]: https://github.com/kettle-rb/kettle-soup-cover/compare/97ddbbca309b87c7f6eed0137b08cad74ec81235...v0.1.0
|
data/README.md
CHANGED
|
@@ -963,7 +963,7 @@ Thanks for RTFM. ☺️
|
|
|
963
963
|
[📌gitmoji]: https://gitmoji.dev
|
|
964
964
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
965
965
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
966
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-
|
|
966
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.141-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
967
967
|
[🔐security]: SECURITY.md
|
|
968
968
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
969
969
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/exe/kettle-soup-cover
CHANGED
|
File without changes
|
|
@@ -45,7 +45,12 @@ SimpleCov.configure do
|
|
|
45
45
|
# SpecTracker must wait for instantiation until it has
|
|
46
46
|
# RSpec's config.world.all_examples,
|
|
47
47
|
# and that doesn't happen until the before(:suite) hook
|
|
48
|
-
|
|
48
|
+
#
|
|
49
|
+
# MIN_COVERAGE_HARD takes precedence:
|
|
50
|
+
# - If explicitly set to false (K_SOUP_COV_MIN_HARD=false), never enforce minimum coverage
|
|
51
|
+
# - If explicitly set to true (K_SOUP_COV_MIN_HARD=true), always enforce minimum coverage
|
|
52
|
+
# - If not set, defaults to IS_CI (enforce in CI, don't enforce locally)
|
|
53
|
+
if Kettle::Soup::Cover::Constants::MIN_COVERAGE_HARD
|
|
49
54
|
minimum_coverage(
|
|
50
55
|
branch: Kettle::Soup::Cover::Constants::MIN_COVERAGE_BRANCH,
|
|
51
56
|
line: Kettle::Soup::Cover::Constants::MIN_COVERAGE_LINE,
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kettle-soup-cover
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -375,10 +375,10 @@ licenses:
|
|
|
375
375
|
- MIT
|
|
376
376
|
metadata:
|
|
377
377
|
homepage_uri: https://kettle-soup-cover.galtzo.com/
|
|
378
|
-
source_code_uri: https://github.com/kettle-rb/kettle-soup-cover/tree/v1.1.
|
|
379
|
-
changelog_uri: https://github.com/kettle-rb/kettle-soup-cover/blob/v1.1.
|
|
378
|
+
source_code_uri: https://github.com/kettle-rb/kettle-soup-cover/tree/v1.1.1
|
|
379
|
+
changelog_uri: https://github.com/kettle-rb/kettle-soup-cover/blob/v1.1.1/CHANGELOG.md
|
|
380
380
|
bug_tracker_uri: https://github.com/kettle-rb/kettle-soup-cover/issues
|
|
381
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.1.
|
|
381
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.1.1
|
|
382
382
|
funding_uri: https://github.com/sponsors/pboling
|
|
383
383
|
wiki_uri: https://github.com/kettle-rb/kettle-soup-cover/wiki
|
|
384
384
|
news_uri: https://www.railsbling.com/tags/kettle-soup-cover
|
metadata.gz.sig
CHANGED
|
Binary file
|