parallel_split_test 0.4.0 → 0.4.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: d47db7668cac84b19a06abb0f28fd4f616305c73
4
- data.tar.gz: 8540f31e03bc0c3ef75df0ca1f35ca8fecdb2fb9
3
+ metadata.gz: 0fa0e4f110f5a7deb5786f38a047eeaa55e6ad17
4
+ data.tar.gz: f03085959e5cbe97d15444e054fbf3b6a45fe168
5
5
  SHA512:
6
- metadata.gz: 5549fef2328692d9f6595dde32ef0c15be9f5593b323526d2f020fb06b269a0c99aaed669fab2e880d2280da00a03373799d17620fd97b902fb0cce632e89de9
7
- data.tar.gz: 27e9cf6279d5ca9003f449ebce3ab3e5a8b61be2776161d47af9e61923ba21fe4efa9d510104f8c64456db4126cc3e920e90f992cd45f61f8c4a703b82c87931
6
+ metadata.gz: cdc90f8c669c80948c84ef37bcd1488aeb1214112293d84ee2e139444f6f440e696dee30e16d80056ce46ed3a2bf3f718bad6f6afccce72e3af0a18f3a05ab96
7
+ data.tar.gz: 3a38adb81ca1711c008b43ed2a08f2b8070db884613baecc7488b376096fa39329e4442ab1007788408c7748d82dd9efe991f6b6c475ad7480b33bad315b21fd
data/Readme.md CHANGED
@@ -73,8 +73,12 @@ TODO
73
73
  - Cucumber support
74
74
  - Test::Unit / Minitest support
75
75
 
76
- Author
77
- ======
76
+ Authors
77
+ =======
78
+
79
+ ### [Contributors](https://github.com/grosser/parallel_split_test/contributors)
80
+ - [bootstraponline](https://github.com/bootstraponline)
81
+
78
82
  [Michael Grosser](http://grosser.it)<br/>
79
83
  michael@grosser.it<br/>
80
84
  License: MIT<br/>
@@ -15,6 +15,7 @@ Usage:
15
15
  Options are:
16
16
  -v, --version Display the program version.
17
17
  -h, --help Display this help message.
18
+ --no-summary Does not display test summary.
18
19
  TEXT
19
20
  exit
20
21
  end
@@ -12,6 +12,8 @@ module ParallelSplitTest
12
12
  end
13
13
 
14
14
  def run(err, out)
15
+ no_summary = @args.delete('--no-summary')
16
+
15
17
  @options = RSpec::Core::ConfigurationOptions.new(@args)
16
18
 
17
19
  processes = ParallelSplitTest.choose_number_of_processes
@@ -30,7 +32,7 @@ module ParallelSplitTest
30
32
 
31
33
  combine_out_files if out_file
32
34
 
33
- reprint_result_lines(out, results.map(&:last))
35
+ reprint_result_lines(out, results.map(&:last)) unless no_summary
34
36
  results.map(&:first).max # combine exit status
35
37
  end
36
38
 
@@ -1,3 +1,3 @@
1
1
  module ParallelSplitTest
2
- VERSION = '0.4.0'
2
+ VERSION = '0.4.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_split_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-12 00:00:00.000000000 Z
11
+ date: 2015-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec