kettle-soup-cover 1.0.1 → 1.0.2
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 +11 -4
- data/lib/kettle/soup/cover/rakelib/coverage.rake +13 -0
- data/lib/kettle/soup/cover/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +6 -5
- 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: dc97c53aaf1332ce338f9db569f950fb56c9c67a5830b058d983b0779aec7807
|
|
4
|
+
data.tar.gz: baa6dbc24ab4f9bae3dc8cfc94024261e2cb1abfa7bc7168ad6f9d83b795154a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e3df09502f840f4db03b086424807698f450677725be131fd78db3103b0f0d41225401ab7b4ac09202174ccddb81f8481977d143fec3b85273ab90020d3836b
|
|
7
|
+
data.tar.gz: 0a5eb6fce94cb84abeadd92d91cf00519de3ba24ccf28961f5e4605453116e57338b4f17d63725e3c269f72317d3545917665abd3ff322c85caebdd2bf621542
|
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.2] - 2023-10-19
|
|
15
|
+
### Fixed
|
|
16
|
+
- Include new `coverage` rake task in the built gem
|
|
17
|
+
- Goddamnit
|
|
18
|
+
- Try to get checksum for SHA-256 to match what is published on Rubygems.org
|
|
19
|
+
|
|
14
20
|
## [1.0.1] - 2023-10-19
|
|
15
21
|
### Fixed
|
|
16
22
|
- Include new `coverage` rake task in the built gem
|
|
@@ -45,7 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
45
51
|
## [0.1.0] - 2023-10-17
|
|
46
52
|
- Initial release
|
|
47
53
|
|
|
48
|
-
[Unreleased]: https://
|
|
49
|
-
[1.0.
|
|
50
|
-
[1.0.
|
|
51
|
-
[
|
|
54
|
+
[Unreleased]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.1...HEAD
|
|
55
|
+
[1.0.2]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.1...v1.0.2
|
|
56
|
+
[1.0.1]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v1.0.0...v1.0.1
|
|
57
|
+
[1.0.0]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/v0.1.0...v1.0.0
|
|
58
|
+
[0.1.0]: https://gitlab.com/kettle-rb/kettle-soup-cover/-/compare/97ddbbca309b87c7f6eed0137b08cad74ec81235...v0.1.0
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# NOTE: This is not for CI, only for local development.
|
|
2
|
+
desc "Run specs w/ coverage and open results in browser"
|
|
3
|
+
task :coverage do
|
|
4
|
+
Kettle::Soup::Cover.reset_const do
|
|
5
|
+
ENV["K_SOUP_COV_PREFIX"] = "K_SOUP_COV_"
|
|
6
|
+
ENV["K_SOUP_COV_DO"] = "true"
|
|
7
|
+
ENV["K_SOUP_COV_MULTI_FORMATTERS"] = "true"
|
|
8
|
+
ENV["K_SOUP_COV_FORMATTERS"] = "html"
|
|
9
|
+
ENV["K_SOUP_COV_DIR"] ||= "coverage"
|
|
10
|
+
end
|
|
11
|
+
Rake::Task["test"].invoke
|
|
12
|
+
%x(open #{Kettle::Soup::Cover::COVERAGE_DIR}/index.html)
|
|
13
|
+
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.
|
|
4
|
+
version: 1.0.2
|
|
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: 2023-10-
|
|
39
|
+
date: 2023-10-20 00:00:00.000000000 Z
|
|
40
40
|
dependencies:
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: version_gem
|
|
@@ -378,6 +378,7 @@ files:
|
|
|
378
378
|
- lib/kettle/soup/cover/config.rb
|
|
379
379
|
- lib/kettle/soup/cover/filters/gt_line_filter.rb
|
|
380
380
|
- lib/kettle/soup/cover/filters/lt_line_filter.rb
|
|
381
|
+
- lib/kettle/soup/cover/rakelib/coverage.rake
|
|
381
382
|
- lib/kettle/soup/cover/tasks.rb
|
|
382
383
|
- lib/kettle/soup/cover/version.rb
|
|
383
384
|
- sig/kettle/soup/cover.rbs
|
|
@@ -387,10 +388,10 @@ licenses:
|
|
|
387
388
|
- MIT
|
|
388
389
|
metadata:
|
|
389
390
|
homepage_uri: https://kettle-soup-cover.gitlab.io/
|
|
390
|
-
source_code_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/tree/v1.0.
|
|
391
|
-
changelog_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/blob/v1.0.
|
|
391
|
+
source_code_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/tree/v1.0.2
|
|
392
|
+
changelog_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/blob/v1.0.2/CHANGELOG.md
|
|
392
393
|
bug_tracker_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/issues
|
|
393
|
-
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.
|
|
394
|
+
documentation_uri: https://www.rubydoc.info/gems/kettle-soup-cover/1.0.2
|
|
394
395
|
wiki_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/wiki
|
|
395
396
|
funding_uri: https://liberapay.com/pboling
|
|
396
397
|
rubygems_mfa_required: 'true'
|
metadata.gz.sig
CHANGED
|
Binary file
|