kettle-soup-cover 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +6 -0
- data/CONTRIBUTING.md +21 -9
- data/README.md +12 -0
- data/lib/kettle/soup/cover/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +24 -10
- 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: 383cc69e3628e758727895476cf1074d7433ea2711233a9314804196e05a9f07
|
4
|
+
data.tar.gz: 4f78f6c776da4a4795e03cc92e0a0291c53ef65713ec9c0087bcafdcd0a63c19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b712007a803e95485b9f110e90fdf06ba153b6a80ff0b71fe6796949a483ad81a09466cc456286d19c2b024af2dcf93206a778a800a5d82ce25eca172af66fea
|
7
|
+
data.tar.gz: d437e0c53a85e1b36bc95769d45a1aa59f76484d8036644ca3a817422a826ef62fcec0ec421501e90b72a28932b110e99fddc560643b6eb276a27c396ff41d85
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -11,6 +11,12 @@ 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.4] - 2024-06-11
|
15
|
+
### Added
|
16
|
+
- Documentation
|
17
|
+
### Changed
|
18
|
+
- `version_gem` requirement to 1.0.4
|
19
|
+
|
14
20
|
## [1.0.3] - 2024-05-23
|
15
21
|
### Added
|
16
22
|
- Documentation
|
data/CONTRIBUTING.md
CHANGED
@@ -4,8 +4,10 @@ Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/kettl
|
|
4
4
|
. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
5
5
|
the [code of conduct][🤝conduct].
|
6
6
|
|
7
|
-
|
8
|
-
and
|
7
|
+
Everyone interacting in this project's codebases, issue trackers, chat
|
8
|
+
rooms and mailing lists is expected to follow the [code of conduct][🤝conduct].
|
9
|
+
|
10
|
+
To submit a patch, please fork the project and create a patch with tests. Once you're happy with it send a pull request.
|
9
11
|
|
10
12
|
## Release
|
11
13
|
|
@@ -21,8 +23,11 @@ To release a new version:
|
|
21
23
|
7. Run `git pull origin main` to ensure you will release the latest trunk code.
|
22
24
|
8. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp, and generate same checksums
|
23
25
|
a. Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
|
26
|
+
b. If the echo above has no output, then it didn't work.
|
27
|
+
c. Note that you'll need the `zsh/datetime` module, if running `zsh`.
|
28
|
+
d. In `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
|
24
29
|
9. Run `bundle exec rake build`
|
25
|
-
10. Run [`bin/checksums`]
|
30
|
+
10. Run [`bin/checksums`][🔒️rubygems-checksums-pr] to create SHA-256 and SHA-512 checksums
|
26
31
|
a. Checksums will be committed automatically by the script, but not pushed
|
27
32
|
11. Run `bundle exec rake release` which will create a git tag for the version,
|
28
33
|
push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
|
@@ -33,12 +38,19 @@ See: [RubyGems Security Guide][🔒️rubygems-security-guide]
|
|
33
38
|
|
34
39
|
## Contributors
|
35
40
|
|
36
|
-
|
41
|
+
[![Contributors on GitHub][🖐contributors-img]][🖐contributors-gh]
|
42
|
+
|
43
|
+
Made with [contributors-img][🖐contrib-rocks].
|
44
|
+
|
45
|
+
For contributors on GitLab see: [https://gitlab.com/kettle-rb/kettle-soup-cover/-/graphs/main][🖐contributors-gl]
|
37
46
|
|
38
|
-
[🤝conduct]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/main/CODE_OF_CONDUCT.md
|
39
47
|
[🧪build]: https://github.com/kettle-rb/kettle-soup-cover/actions
|
40
|
-
[
|
41
|
-
[
|
42
|
-
[
|
43
|
-
[
|
48
|
+
[🤝conduct]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/main/CODE_OF_CONDUCT.md
|
49
|
+
[🖐contrib-rocks]: https://contrib.rocks
|
50
|
+
[🖐contributors-gh]: https://github.com/kettle-rb/kettle-soup-cover/graphs/contributors
|
51
|
+
[🖐contributors-img]: https://contrib.rocks/image?repo=kettle-rb/kettle-soup-cover
|
52
|
+
[🖐contributors-gl]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/graphs/main
|
44
53
|
[💎rubygems]: https://rubygems.org
|
54
|
+
[🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
55
|
+
[🔒️rubygems-checksums-pr]: https://github.com/rubygems/guides/pull/325
|
56
|
+
[🚎src-main]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/main
|
data/README.md
CHANGED
@@ -13,6 +13,18 @@ where this library is considered a package of [SOUP](https://en.wikipedia.org/wi
|
|
13
13
|
|
14
14
|
Just add four lines of code to get a configured, curated, opinionated, set of dependencies for Test Coverage.
|
15
15
|
|
16
|
+
One of the major benefits of using this library is not having to figure
|
17
|
+
out how to get multiple coverage output formats working. I did that for you,
|
18
|
+
and I got all of them working, at the same time together, or al la carte. Kum-ba-ya.
|
19
|
+
|
20
|
+
A quick shot of raw coverage power, straight to your brain:
|
21
|
+
|
22
|
+
```shell
|
23
|
+
export K_SOUP_COV_MULTI_FORMATTERS="html,xml,rcov,lcov,json,tty"
|
24
|
+
```
|
25
|
+
|
26
|
+
I hope I've piqued your interest.
|
27
|
+
|
16
28
|
## Support My Open Source Development
|
17
29
|
|
18
30
|
<div id="badges">
|
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.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
36
36
|
KuxrfYrN+9HvMdm+nZ6TypmKftHY3Gj+/uu+g8Icm/zrvTWAEE0mcJOkfrIoNPJb
|
37
37
|
pF8dMA==
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date: 2024-
|
39
|
+
date: 2024-07-11 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: version_gem
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: '1.1'
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 1.1.
|
50
|
+
version: 1.1.4
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: '1.1'
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.1.
|
60
|
+
version: 1.1.4
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: rake
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -211,7 +211,7 @@ dependencies:
|
|
211
211
|
version: '0.9'
|
212
212
|
- - ">="
|
213
213
|
- !ruby/object:Gem::Version
|
214
|
-
version: 0.9.
|
214
|
+
version: 0.9.36
|
215
215
|
type: :development
|
216
216
|
prerelease: false
|
217
217
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -221,7 +221,7 @@ dependencies:
|
|
221
221
|
version: '0.9'
|
222
222
|
- - ">="
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
version: 0.9.
|
224
|
+
version: 0.9.36
|
225
225
|
- !ruby/object:Gem::Dependency
|
226
226
|
name: yard-junk
|
227
227
|
requirement: !ruby/object:Gem::Requirement
|
@@ -290,6 +290,20 @@ dependencies:
|
|
290
290
|
- - "~>"
|
291
291
|
- !ruby/object:Gem::Version
|
292
292
|
version: '2.24'
|
293
|
+
- !ruby/object:Gem::Dependency
|
294
|
+
name: standard
|
295
|
+
requirement: !ruby/object:Gem::Requirement
|
296
|
+
requirements:
|
297
|
+
- - ">="
|
298
|
+
- !ruby/object:Gem::Version
|
299
|
+
version: 1.35.1
|
300
|
+
type: :development
|
301
|
+
prerelease: false
|
302
|
+
version_requirements: !ruby/object:Gem::Requirement
|
303
|
+
requirements:
|
304
|
+
- - ">="
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
version: 1.35.1
|
293
307
|
- !ruby/object:Gem::Dependency
|
294
308
|
name: rspec
|
295
309
|
requirement: !ruby/object:Gem::Requirement
|
@@ -388,10 +402,10 @@ licenses:
|
|
388
402
|
- MIT
|
389
403
|
metadata:
|
390
404
|
homepage_uri: https://kettle-rb.gitlab.io/
|
391
|
-
source_code_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/v1.0.
|
392
|
-
changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.
|
405
|
+
source_code_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/v1.0.4
|
406
|
+
changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.4/CHANGELOG.md
|
393
407
|
bug_tracker_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/issues
|
394
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.
|
408
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.4
|
395
409
|
wiki_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/wiki
|
396
410
|
funding_uri: https://liberapay.com/pboling
|
397
411
|
rubygems_mfa_required: 'true'
|
@@ -410,7 +424,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
410
424
|
- !ruby/object:Gem::Version
|
411
425
|
version: '0'
|
412
426
|
requirements: []
|
413
|
-
rubygems_version: 3.
|
427
|
+
rubygems_version: 3.5.15
|
414
428
|
signing_key:
|
415
429
|
specification_version: 4
|
416
430
|
summary: A Covered Kettle of SOUP, A Code Coverage Meta Gem
|
metadata.gz.sig
CHANGED
Binary file
|