build_log_parser 0.1.2 → 0.1.3

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: 6135dc6a2614063bf61d60eea8ed6f4c361edda2
4
- data.tar.gz: 85d4a91676c15af3227f70bc5a054fdca7de041a
3
+ metadata.gz: e463edec3b7d150221fffb7bbcb9bf699399376d
4
+ data.tar.gz: e45dc28cf52c686954d03d279d9963dad359a2ad
5
5
  SHA512:
6
- metadata.gz: 4467613878d1b843092ef77e8b0e9fa642be5cabfed2fc87972d18ac733116a77250c4d804a3b71583ab6fac8af5df404938fa472a5ba8d3f195662ea2de4873
7
- data.tar.gz: ead30fdb85456168fc0e05e7fc16b0bf0c3c76fa6663f62d90a76cc5a4569939b5a858b9d9f3f0cc7b28a1497fb6d89689f83ac2e700acbcaf4509acb28205fb
6
+ metadata.gz: c4e047dc2b80909f84d712d9b0a1cafacc9a3d982f8d9438fb579d8da08f46d88f35508ec5db5c5bfb08ef60a7e89bdc3fc545e282680b6b0fd8dbb1d5b6398d
7
+ data.tar.gz: 8ff89d1b8614ef3f24cf2561b848f227fb5b58438b2d1a0740b214bd2fa6be3f478fee1da7d8593a6748fe262152730844cdb70bcf1ae6cf81ad9574a14326a0
@@ -6,7 +6,8 @@ module BuildLogParser
6
6
  /ran [\d]+ tests in (.*)\n?/i,
7
7
  /time: (.*), memory:/i,
8
8
  /[\d]+ passing (.*)/,
9
- /executed [\d]+ of [\d]+ [\w]+ \(([\d\.]+ [\w]+) /i
9
+ /executed [\d]+ of [\d]+ [\w]+ \(([\d\.]+ [\w]+) /i,
10
+ /^[\d]+ tests run in ([\d\.]+)\s/
10
11
  ]
11
12
 
12
13
  def fetch_duration(str)
@@ -1,3 +1,3 @@
1
1
  module BuildLogParser
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -144,7 +144,8 @@ describe BuildLogParser::Parser do
144
144
  [ "Finished tests in 8.071688s, 3.8406 tests/s, 9.4156 assertions/s.", 8.071688 ],
145
145
  [ "Finished in 10.8 seconds (3.1s on load, 7.7s on tests)", 10.8 ],
146
146
  [ "80 passing (347ms)", 0.347 ],
147
- [ "JS 1.9.7 (Linux): Executed 202 of 202 SUCCESS (12.156 secs / 11.47 secs)", 12.156 ]
147
+ [ "JS 1.9.7 (Linux): Executed 202 of 202 SUCCESS (12.156 secs / 11.47 secs)", 12.156 ],
148
+ [ "23 tests run in 0.8 seconds (23 tests passed)", 0.8 ]
148
149
  ]
149
150
  end
150
151
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build_log_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Sosedoff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-27 00:00:00.000000000 Z
11
+ date: 2014-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake