guard-karma 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 043476f09a4cc1a31c34230ed15b82988012b6f2
4
- data.tar.gz: 2f9be928d2cdde3b85dc8135d586c5a1eb871f29
3
+ metadata.gz: b85f464212e6f80be53f6e453cc67efd2de1fad7
4
+ data.tar.gz: 306266b819ce36251c6adcc02767285e4fd5a3e7
5
5
  SHA512:
6
- metadata.gz: d40aefde9749be45c93ef688c35ee3e050443299057c24f9bc58b42098e095c862fdc8ba7dd84adc83721f7f9261849e77c40cb053f72b2b0fc02498e96c6aca
7
- data.tar.gz: f6c7736a573d6a607ce099e4c9a4e5db8ebea9090030bf53fcc5cc4dcc8617687a1aa7a34094af31a72e26bce02b29bc2df4b529a0280917631e08d31071fa22
6
+ metadata.gz: b9144a7c0e434d6c4e50c914e8fc6bee13b22dc0dda183b27f3d01b005ed519f5178bb0b1290f561f31307b48594a0d16f486397b9ffdcfaee672d59014b5b1e
7
+ data.tar.gz: c47556ce8717551b4a360b8b48c8cfd3589dad827e84e9e782041e45fedcce24320224a41cd25d1ccd43658e64cccbb762f5732dccf4466c06e3b8566392cd0f
@@ -36,11 +36,15 @@ module Guard
36
36
  private
37
37
 
38
38
  def parse_summary(summary)
39
+ # Example:
40
+ # Executed x of y (n FAILED) (skipped z)
39
41
  summary.match(/Executed\ (\d+)\ of\ (\d+)\ \((\d+)\ FAILED\)/) do |match|
40
42
  return [match[1].to_i, match[2].to_i, match[3].to_i]
41
43
  end
42
44
 
43
- summary.match(/Executed\ (\d+)\ of\ (\d+)\ SUCCESS/) do |match|
45
+ # Example:
46
+ # Executed x of y (skipped z) SUCCESS
47
+ summary.match(/Executed\ (\d+)\ of\ (\d+).*\ SUCCESS/) do |match|
44
48
  return [match[1].to_i, match[2].to_i, 0]
45
49
  end
46
50
 
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module KarmaVersion
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-karma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ania Slimak
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-29 00:00:00.000000000 Z
11
+ date: 2017-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler