single_cov 0.5.4 → 0.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/single_cov.rb +1 -1
- data/lib/single_cov/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0853e49ae0207a02a90dc984bf197ca7bf3c26a
|
4
|
+
data.tar.gz: 5f2b55c37115efe5ddaa6fc65b42000878ce751c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e2ae1b55ae827cd1da1fc5372312f4c07b4c141a5fbb928f757a3dd3782279fa08459f2ab3831198c0e54b29ea4674714cf31d198ba4ad81bc5f1931d2ea58a
|
7
|
+
data.tar.gz: 71d297d98d6f7a3c3c910490370286ba5035cd1fb1c40c570b07368cd758a7919800728d4d5c77f87feb9086f9342c3f635bcba1f60a65c31d1548ff837a16e1
|
data/lib/single_cov.rb
CHANGED
@@ -141,7 +141,7 @@ module SingleCov
|
|
141
141
|
# do not record or verify when only running selected tests since it would be missing data
|
142
142
|
def minitest_running_subset_of_tests?
|
143
143
|
# via direct option (ruby test.rb -n /foo/)
|
144
|
-
(ARGV & ['-n', '--name', '-l', '--line']).any? ||
|
144
|
+
(ARGV.map { |a| a.split('=', 2).first } & ['-n', '--name', '-l', '--line']).any? ||
|
145
145
|
|
146
146
|
# via testrbl or mtest or rails with direct line number (mtest test.rb:123)
|
147
147
|
(ARGV.first =~ /:\d+\Z/) ||
|
data/lib/single_cov/version.rb
CHANGED
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.5.
|
4
|
+
version: 0.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Grosser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: michael@grosser.it
|