bashcov 3.1.0 → 3.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6b65a0c0d70e2ae93acb297d3d89fe9de010f4dbc63b92a025504c50bb1100b
4
- data.tar.gz: 1cf1037ed383e6f4f0764f6991c0371326dcde1ebe340e5264aae855d5281174
3
+ metadata.gz: e1270ef26fc4fb30e504b10fe6a02d432b4008286387ed641ee4e14be055eaa6
4
+ data.tar.gz: b89bb9b99fa5c96f7415811ffaf2ee3fe27a0bb5f55842b8ea9eb7b382d49c4c
5
5
  SHA512:
6
- metadata.gz: 596e7890b99b1fa1c23ecc42a64d092aeaaa9f03f5fb7181261df5d695405e33b1557de8c4218b591ded6aab4d0ecbaaae0929b4bc69bb83d43cc36d45df60d0
7
- data.tar.gz: f442d9628a530ffad4058727c93eb25c30241f9a2c74199ab26ace4e704431e44e94f586df5a4fb1e7316f9c5800ab436014c16b203571e8f4625ffe17b42dbd
6
+ metadata.gz: 3018cfa6f39d0e50bb84f2090d42a227e615cdefc5cf1fc0bd77893b4f60e2a9e05071fb17c1fd31497735349c291c61be9b52a5f3bada2f1eec65cfa0fc82f9
7
+ data.tar.gz: 8d0816079f6c775089682b1852d8b5bcdf8ead87d691110af3ba747f61470d28a28f36baf4bb04eb844763528a3b7ddff517c354422a4eb57e6d9edaa0099577
data/CHANGELOG.md CHANGED
@@ -1,7 +1,15 @@
1
- ## Unreleased ([changes](https://github.com/infertux/bashcov/compare/v3.1.0...master))
1
+ ## Unreleased ([changes](https://github.com/infertux/bashcov/compare/v3.1.2...master))
2
2
 
3
3
  * TBD
4
4
 
5
+ ## v3.1.2, 2024-02-29 ([changes](https://github.com/infertux/bashcov/compare/v3.1.1...v3.1.2))
6
+
7
+ * [BUGFIX] Upgrade `simplecov` to [calling twice bug fix](https://github.com/simplecov-ruby/simplecov/issues/1003)
8
+
9
+ ## v3.1.1, 2023-09-28 ([changes](https://github.com/infertux/bashcov/compare/v3.1.0...v3.1.1))
10
+
11
+ * [BUGFIX] Make sure StringIO is loaded when `--mute` is used
12
+
5
13
  ## v3.1.0, 2023-09-28 ([changes](https://github.com/infertux/bashcov/compare/v3.0.3...v3.1.0))
6
14
 
7
15
  * [FEATURE] Better diagnostics for runner result specs
data/bin/bashcov CHANGED
@@ -32,7 +32,11 @@ SimpleCov.at_exit do
32
32
  # XXX: suppress output from https://github.com/colszowka/simplecov-html/blob/9ec41504ab139fabfaddfc786dfdab5d6aca0bab/lib/simplecov-html.rb#L25
33
33
  # See https://github.com/infertux/bashcov/issues/53
34
34
  original_stdout = $stdout
35
- $stdout = StringIO.new if Bashcov.mute
35
+
36
+ if Bashcov.mute
37
+ require "stringio"
38
+ $stdout = StringIO.new
39
+ end
36
40
 
37
41
  result.format!
38
42
  ensure
@@ -3,5 +3,5 @@
3
3
  # :nodoc:
4
4
  module Bashcov
5
5
  # Current Bashcov version
6
- VERSION = "3.1.0"
6
+ VERSION = "3.1.2"
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bashcov
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cédric Félizard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-28 00:00:00.000000000 Z
11
+ date: 2024-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simplecov
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.21.2
19
+ version: 0.22.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.21.2
26
+ version: 0.22.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aruba
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  - !ruby/object:Gem::Version
206
206
  version: '0'
207
207
  requirements: []
208
- rubygems_version: 3.4.20
208
+ rubygems_version: 3.5.6
209
209
  signing_key:
210
210
  specification_version: 4
211
211
  summary: Code coverage tool for Bash