kettle-soup-cover 1.0.2 → 1.0.3
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 +9 -1
- data/CONTRIBUTING.md +11 -5
- data/LICENSE.txt +1 -1
- data/README.md +4 -4
- data/lib/kettle/soup/cover/version.rb +1 -1
- data/lib/kettle/soup/cover.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +11 -11
- 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: b0b636d5d5705146d57855dcaa8f780488a4da80bf0f478b9c885877d02ceb99
|
4
|
+
data.tar.gz: 5cd0f431e0f322d4feb76c4795d1b18d2db5927cb369e9018e3175ab3ef7ee74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d43edd2deee88f523103a2189627b93362cd1ba29c84c5336bb14daa27f52faf4e98a0b15809e1d03628b2c68532e0db52f6795644f947a7f62373f5069a14d7
|
7
|
+
data.tar.gz: 2ba80d63c04d563bba6cccc46b18292711a7b6b7fb701b90add15c5b3100ab4593b713c57060fc15ce6c2092a26c8a0c6fe3842718e272474f719e17f74c3035
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -11,6 +11,14 @@ 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.3] - 2024-05-23
|
15
|
+
### Added
|
16
|
+
- Documentation
|
17
|
+
- Mirror repo on GitHub: https://github.com/kettle-rb/kettle-soup-cover
|
18
|
+
- More tests
|
19
|
+
### Fixed
|
20
|
+
- Incorrect URLs for homepage, etc
|
21
|
+
|
14
22
|
## [1.0.2] - 2023-10-19
|
15
23
|
### Fixed
|
16
24
|
- Include new `coverage` rake task in the built gem
|
@@ -43,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
43
51
|
- More and better documentation
|
44
52
|
### Changed
|
45
53
|
- This gem no longer does `require "simplecov"`
|
46
|
-
- Instead you can `require "simplecov" if Kettle::Soup::Cover::
|
54
|
+
- Instead you can `require "simplecov" if Kettle::Soup::Cover::DO_COV` wherever you deem fit
|
47
55
|
### Fixed
|
48
56
|
- All ENV vars now begin with a uniform prefix for this gem:
|
49
57
|
- `K_SOUP_COV_*`
|
data/CONTRIBUTING.md
CHANGED
@@ -15,11 +15,17 @@ To release a new version:
|
|
15
15
|
2. Update the version number in `version.rb`
|
16
16
|
3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
|
17
17
|
4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
|
18
|
+
5. Run `git push` to trigger the final CI pipeline before release, & merge PRs
|
18
19
|
a. NOTE: Remember to [check the build][🧪build]!
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
6. Run `git checkout main`
|
21
|
+
7. Run `git pull origin main` to ensure you will release the latest trunk code.
|
22
|
+
8. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp, and generate same checksums
|
23
|
+
a. Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
|
24
|
+
9. Run `bundle exec rake build`
|
25
|
+
10. Run [`bin/checksums`](https://github.com/rubygems/guides/pull/325) to create SHA-256 and SHA-512 checksums
|
26
|
+
a. Checksums will be committed automatically by the script, but not pushed
|
27
|
+
11. Run `bundle exec rake release` which will create a git tag for the version,
|
28
|
+
push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
|
23
29
|
|
24
30
|
NOTE: You will need to have a public key in `certs/`, and list your cert in the
|
25
31
|
`gemspec`, in order to sign the new release.
|
@@ -30,7 +36,7 @@ See: [RubyGems Security Guide][🔒️rubygems-security-guide]
|
|
30
36
|
See: [https://gitlab.com/kettle-rb/kettle-soup-cover/-/graphs/main][🖐contributors]
|
31
37
|
|
32
38
|
[🤝conduct]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/main/CODE_OF_CONDUCT.md
|
33
|
-
[🧪build]: https://github.com/
|
39
|
+
[🧪build]: https://github.com/kettle-rb/kettle-soup-cover/actions
|
34
40
|
[🖐contributors]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/graphs/main
|
35
41
|
[🚎src-main]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/main
|
36
42
|
[🏘chat]: https://matrix.to/#/#kettle-rb:gitter.im
|
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2023 Peter Boling
|
3
|
+
Copyright (c) 2023 - 2024 Peter Boling (railsbling.com)
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ A Covered Kettle of SOUP (Software of Unknown Provenance)
|
|
11
11
|
The name is derived in part from the medical devices field,
|
12
12
|
where this library is considered a package of [SOUP](https://en.wikipedia.org/wiki/Software_of_unknown_pedigree).
|
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
16
|
## Support My Open Source Development
|
17
17
|
|
@@ -69,7 +69,7 @@ In your `spec/spec_helper.rb`, just prior to loading the library under test:
|
|
69
69
|
require "kettle-soup-cover"
|
70
70
|
|
71
71
|
# Later in your spec setup, do this;
|
72
|
-
require "simplecov" if Kettle::Soup::Cover::
|
72
|
+
require "simplecov" if Kettle::Soup::Cover::DO_COV
|
73
73
|
```
|
74
74
|
|
75
75
|
In your `.simplecov` file:
|
@@ -136,8 +136,8 @@ K_SOUP_COV_DO
|
|
136
136
|
K_SOUP_COV_FILTER_DIRS
|
137
137
|
K_SOUP_COV_FORMATTERS
|
138
138
|
K_SOUP_COV_MERGE_TIMEOUT
|
139
|
-
K_SOUP_COV_MIN_HARD
|
140
139
|
K_SOUP_COV_MIN_BRANCH
|
140
|
+
K_SOUP_COV_MIN_HARD
|
141
141
|
K_SOUP_COV_MIN_LINE
|
142
142
|
K_SOUP_COV_MULTI_FORMATTERS
|
143
143
|
K_SOUP_COV_PREFIX
|
@@ -187,7 +187,7 @@ The gem is available as open source under the terms of
|
|
187
187
|
the [MIT License][license] [![License: MIT][license-img]][license-ref].
|
188
188
|
See [LICENSE][license] for the official [Copyright Notice][copyright-notice-explainer].
|
189
189
|
|
190
|
-
* Copyright (c) 2023 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
190
|
+
* Copyright (c) 2023 - 2024 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
191
191
|
|
192
192
|
[copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
193
193
|
[license]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/main/LICENSE.txt
|
data/lib/kettle/soup/cover.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-soup-cover
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
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:
|
39
|
+
date: 2024-05-23 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: version_gem
|
@@ -383,16 +383,16 @@ files:
|
|
383
383
|
- lib/kettle/soup/cover/version.rb
|
384
384
|
- sig/kettle/soup/cover.rbs
|
385
385
|
- sig/kettle/soup/cover/version.rbs
|
386
|
-
homepage: https://gitlab.com/
|
386
|
+
homepage: https://gitlab.com/kettle-rb/kettle-soup-cover
|
387
387
|
licenses:
|
388
388
|
- MIT
|
389
389
|
metadata:
|
390
|
-
homepage_uri: https://kettle-
|
391
|
-
source_code_uri: https://gitlab.com/
|
392
|
-
changelog_uri: https://gitlab.com/
|
393
|
-
bug_tracker_uri: https://gitlab.com/
|
394
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.
|
395
|
-
wiki_uri: https://gitlab.com/
|
390
|
+
homepage_uri: https://kettle-rb.gitlab.io/
|
391
|
+
source_code_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/tree/v1.0.3
|
392
|
+
changelog_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/blob/v1.0.3/CHANGELOG.md
|
393
|
+
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.3
|
395
|
+
wiki_uri: https://gitlab.com/kettle-rb/kettle-soup-cover/-/wiki
|
396
396
|
funding_uri: https://liberapay.com/pboling
|
397
397
|
rubygems_mfa_required: 'true'
|
398
398
|
post_install_message:
|
@@ -410,8 +410,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
410
410
|
- !ruby/object:Gem::Version
|
411
411
|
version: '0'
|
412
412
|
requirements: []
|
413
|
-
rubygems_version: 3.4.
|
413
|
+
rubygems_version: 3.4.10
|
414
414
|
signing_key:
|
415
415
|
specification_version: 4
|
416
|
-
summary: A Covered Kettle of SOUP, A
|
416
|
+
summary: A Covered Kettle of SOUP, A Code Coverage Meta Gem
|
417
417
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|