kettle-soup-cover 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c98f3cee5c167ee77f4bf466ce068584afa9a6bef11010868ecde1fb6297825
4
- data.tar.gz: 5d3f998c56eeedff2f589074351c9442988ec21693049fd8d067b2edab1511e7
3
+ metadata.gz: dc97c53aaf1332ce338f9db569f950fb56c9c67a5830b058d983b0779aec7807
4
+ data.tar.gz: baa6dbc24ab4f9bae3dc8cfc94024261e2cb1abfa7bc7168ad6f9d83b795154a
5
5
  SHA512:
6
- metadata.gz: c38a50966f371fd09080bb4b1e2eb937d17f7b02e363c3ccdb54629009526bf642fb92be3080bcfb14343b0ddca4b724f50a0d1452ed448acacd1486b3674da6
7
- data.tar.gz: c15f006f570347de26392f84be7497b53dc49cfac86ed10ae5dffc6ef532c22b450fe08b5b6ec15836bd1b6ad30ed99f8c00fddcb392a0f62c9b7e6847a363fb
6
+ metadata.gz: 7e3df09502f840f4db03b086424807698f450677725be131fd78db3103b0f0d41225401ab7b4ac09202174ccddb81f8481977d143fec3b85273ab90020d3836b
7
+ data.tar.gz: 0a5eb6fce94cb84abeadd92d91cf00519de3ba24ccf28961f5e4605453116e57338b4f17d63725e3c269f72317d3545917665abd3ff322c85caebdd2bf621542
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -11,6 +11,16 @@ 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
+
20
+ ## [1.0.1] - 2023-10-19
21
+ ### Fixed
22
+ - Include new `coverage` rake task in the built gem
23
+
14
24
  ## [1.0.0] - 2023-10-19
15
25
  ### Added
16
26
  - ✨ `Regexp.escape` the `FILTER_DIRS` to allow for paths to be excluded from coverage
@@ -41,6 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
41
51
  ## [0.1.0] - 2023-10-17
42
52
  - Initial release
43
53
 
44
- [Unreleased]: https://github.com/pboling/pretty_feed/compare/v1.0.0...HEAD
45
- [1.0.0]: https://github.com/pboling/pretty_feed/compare/v0.1.0...v1.0.0
46
- [0.1.0]: https://github.com/pboling/pretty_feed/compare/97ddbbca309b87c7f6eed0137b08cad74ec81235...v0.1.0
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
@@ -4,7 +4,7 @@ module Kettle
4
4
  module Soup
5
5
  module Cover
6
6
  module Version
7
- VERSION = "1.0.0"
7
+ VERSION = "1.0.2"
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.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-19 00:00:00.000000000 Z
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.0
391
- changelog_uri: https://gitlab.com/rubocop-lts/kettle-soup-cover/-/blob/v1.0.0/CHANGELOG.md
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.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