specguard-ruby 0.3.19 → 0.3.20
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
- data/lib/specguard/rspec/cli.rb +3 -1
- data/lib/specguard/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c002b753148e4a915e801813a1c0ad88e94f5ac20cb8f39e42e8cf5a760aaf75
|
|
4
|
+
data.tar.gz: 97b24f72b61a48e3bbd27b8c95bc9ae8f26abd2e5028ef8ae525fe9f404995c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e8c6b4fdc40bef297cb50af6fd86f6bcd38326c099e9d778305dcd0a8a4e44a4104269c37acbdbd44a7d37b4a5d44b84d404a80955b6866b0262cf2f3448543
|
|
7
|
+
data.tar.gz: c262a4876a218d3e264ffe9ea1fafdf2afa7cf16e60996cacbcad21e569830d60981ba9ed6c9abccbbe5ef0607ec6d99a80c98e482101ca8f62f187f0fb457b6
|
data/lib/specguard/rspec/cli.rb
CHANGED
|
@@ -377,7 +377,9 @@ module SpecGuard
|
|
|
377
377
|
reason += " and #{skipped} in dependency or build directories" if skipped.positive?
|
|
378
378
|
reason
|
|
379
379
|
elsif stats.unreadable.positive? && skipped.positive?
|
|
380
|
-
|
|
380
|
+
# Both causes at once, so `matched` is their sum — the bare prefix
|
|
381
|
+
# is true only on the solo arms below, where it equals the one counter.
|
|
382
|
+
"#{matched}, but #{stats.unreadable} could not be read and #{skipped} in dependency or build directories"
|
|
381
383
|
elsif skipped.positive?
|
|
382
384
|
# Every matching file the diff produced was fenced: the shape
|
|
383
385
|
# {all_fenced_reason} uses, in this mode's vocabulary.
|
data/lib/specguard/version.rb
CHANGED