kettle-soup-cover 1.0.7 → 1.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a07c0152dda8bd9cce9d4bdd7f76c89f1f50579909017ae7521cad3dfcc8cbad
4
- data.tar.gz: 0f6590e962b33dbeac87c0a4895496073bbbd4ad7a8a155e2bd4f68ee32fa0d7
3
+ metadata.gz: 845a2a9551817f3a48c4f590ffa8a71d0e5879adf8ca8a2aa0201570419594b6
4
+ data.tar.gz: 7a1cf496ef62a3f5bc7239f065aedd3aea9deacabfd3447b5532e26c0b254428
5
5
  SHA512:
6
- metadata.gz: a608f3345c2af94017e7825775f9f4b3f9a1bbc11ba477bf170be293998cd73240bf44bf14cb426e1e70051a7f56d6044ce5a9ef608b26b682c6f2ad627ae451
7
- data.tar.gz: fc3eaab0ada73e9cbd6773e14a037ce0393e81bb76659d175ed4d1a7cb87e14bc423da4e4d910a001da06666bfc5156600c469ab8bcbc4a643f34dcaa505c8bf
6
+ metadata.gz: e8eaab2e494480a4f45b9c12ecd6bdc3c4cf08e5b8b0d8682b306b675b3f8e665c3bde45e721d214b1f40e12f691eb2471947e6f8779cf55287908fbc94c50ac
7
+ data.tar.gz: e5af690d297e7b9a09fbe638c4fe312f9dd36c748a1693f7fdaccc84d42be6211213cfe3c390826660fd1a3ed882228c466526f162eeba40b38bf074631b3dba
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -11,7 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  ### Fixed
12
12
  ### Removed
13
13
 
14
+ ## [1.0.8] - 2025-05-20
15
+ - COVERAGE: 93.43% -- 128/137 lines in 10 files
16
+ - BRANCH COVERAGE: 50.00% -- 16/32 branches in 10 files
17
+ - 11.11% documented
18
+ ### Added
19
+ - Link to discussions on GitHub
20
+ ### Changed
21
+ - Fixed `spec.homepage` and `spec.source_code_uri` in gemspec
22
+
14
23
  ## [1.0.7] - 2025-05-20
24
+ - COVERAGE: 93.43% -- 128/137 lines in 10 files
25
+ - BRANCH COVERAGE: 50.00% -- 16/32 branches in 10 files
26
+ - 11.11% documented
15
27
  ### Added
16
28
  - Document usage with minitest
17
29
  - Document usage with https://github.com/irongut/CodeCoverageSummary
@@ -118,7 +130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
118
130
  ## [0.1.0] - 2023-10-17
119
131
  - Initial release
120
132
 
121
- [Unreleased]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.7...HEAD
133
+ [Unreleased]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.8...HEAD
134
+ [1.0.8]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.7...v1.0.8
122
135
  [1.0.7]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.6...v1.0.7
123
136
  [1.0.6]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.5...v1.0.6
124
137
  [1.0.5]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.4...v1.0.5
data/README.md CHANGED
@@ -52,9 +52,11 @@ For apps and libraries. Any test framework. Many code coverage related GitHub
52
52
  |--------------------------------------------------------|-------------------------------------------------------------------|---------------------------|--------------------------|---------------------------|--------------------------|------------------------------|
53
53
  | 🧪 [kettle-rb/kettle-soup-cover on GitLab][📜src-gl] | The Truth | [💚][🤝gl-issues] | [💚][🤝gl-pulls] | [💚][📜wiki] | 🏀 Tiny Matrix | ➖ |
54
54
  | 🧊 [kettle-rb/kettle-soup-cover on CodeBerg][📜src-cb] | An Ethical Mirror ([Donate][🤝cb-donate]) | ➖ | [💚][🤝cb-pulls] | ➖ | ⭕️ No Matrix | ➖ |
55
- | 🐙 [kettle-rb/kettle-soup-cover on GitHub][📜src-gh] | A Dirty Mirror | [💚][🤝gh-issues] | [💚][🤝gh-pulls] | ➖ | 💯 Full Matrix | |
55
+ | 🐙 [kettle-rb/kettle-soup-cover on GitHub][📜src-gh] | A Dirty Mirror | [💚][🤝gh-issues] | [💚][🤝gh-pulls] | ➖ | 💯 Full Matrix | [💚][gh-discussions] |
56
56
  | 🎮️ [Discord Server][✉️discord-invite] | [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite] | [Let's][✉️discord-invite] | [talk][✉️discord-invite] | [about][✉️discord-invite] | [this][✉️discord-invite] | [library!][✉️discord-invite] |
57
57
 
58
+ [gh-discussions]: https://github.com/kettle-rb/kettle-soup-cover/discussions
59
+
58
60
  One of the major benefits of using this library is not having to figure
59
61
  out how to get multiple coverage output formats working. I did that for you,
60
62
  and I got all of them working, at the same time together, or al la carte. Kum-ba-ya.
@@ -4,7 +4,7 @@ module Kettle
4
4
  module Soup
5
5
  module Cover
6
6
  module Version
7
- VERSION = "1.0.7"
7
+ VERSION = "1.0.8"
8
8
  end
9
9
  end
10
10
  end
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.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -432,15 +432,15 @@ files:
432
432
  - lib/kettle/soup/cover/version.rb
433
433
  - sig/kettle/soup/cover.rbs
434
434
  - sig/kettle/soup/cover/version.rbs
435
- homepage: https://github.com/kettle-rb/kettle-soup-cover
435
+ homepage: https://gitlab.com/kettle-rb/kettle-soup-cover
436
436
  licenses:
437
437
  - MIT
438
438
  metadata:
439
439
  homepage_uri: https://kettle-rb.gitlab.io/
440
- source_code_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/v1.0.7
441
- changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.7/CHANGELOG.md
440
+ source_code_uri: https://github.com/kettle-rb/kettle-soup-cover/-/tree/v1.0.8
441
+ changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.8/CHANGELOG.md
442
442
  bug_tracker_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/issues
443
- documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.7
443
+ documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.8
444
444
  wiki_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/wiki
445
445
  funding_uri: https://liberapay.com/pboling
446
446
  news_uri: https://www.railsbling.com/tags/kettle-soup-cover
metadata.gz.sig CHANGED
Binary file