single_cov 0.8.3 → 0.8.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/single_cov/version.rb +1 -1
- data/lib/single_cov.rb +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 37412e211f8574c2160896a6703e98b40c7d4940
|
4
|
+
data.tar.gz: f98008886892599241ab7c2e64444e38ac642138
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37578a95335ffbc37f69c63f21a8cc7b7a32eec86245bcf6a5170ce86216d0f812cfcb478a047e6c9652a66ce9aa8066750768f865b76010c8e63afb212ad49b
|
7
|
+
data.tar.gz: e6a801e4480356c859ab14eb7760dd2967286e90f38165c5cfd8f391fa8a0e04830989daa80ebfb9ad143d36afa5184e066530719e3a30628d83876df945db3c
|
data/lib/single_cov/version.rb
CHANGED
data/lib/single_cov.rb
CHANGED
@@ -163,6 +163,11 @@ module SingleCov
|
|
163
163
|
# and the resets it ... works out ok in the end ...
|
164
164
|
return if faked_by_forking_test_runner?
|
165
165
|
|
166
|
+
# ... but only if it's used with `--merge-coverage` otherwise the coverage reporting is useless
|
167
|
+
if $0.end_with?("/forking-test-runner")
|
168
|
+
raise "forking-test-runner only work with single_cov when using --merge-coverage"
|
169
|
+
end
|
170
|
+
|
166
171
|
raise "Load minitest after setting up SingleCov"
|
167
172
|
end
|
168
173
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: single_cov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Grosser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-02-
|
11
|
+
date: 2018-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: michael@grosser.it
|
@@ -39,7 +39,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
39
|
version: '0'
|
40
40
|
requirements: []
|
41
41
|
rubyforge_project:
|
42
|
-
rubygems_version: 2.
|
42
|
+
rubygems_version: 2.6.14
|
43
43
|
signing_key:
|
44
44
|
specification_version: 4
|
45
45
|
summary: Actionable code coverage.
|