parallel_tests 2.2.0 → 2.2.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: 32809deaddb011f7b08965419f426da72e81cdbd
4
- data.tar.gz: a130caa8d99c2062618a1219f23c0ebb39d7d339
3
+ metadata.gz: f2aed504af28e6422ce6a0dab9578f86a6004f3c
4
+ data.tar.gz: b458e25fe0bcbd498b556956f9156279f846f699
5
5
  SHA512:
6
- metadata.gz: a758a621ff8f17cf7642014008b0d0eb683ba1718293273701763f04223e88bb554c46a8625d50704d25b9a5a6010d907fd33152e9f0d60e936f525c3242bb06
7
- data.tar.gz: ac1a82f548a5b500452372f829171ef9324ff2df0afc0b15f92564f300ea0596d1056e5e62f3da1b46b2d095bb6f57d2af04faa69a19d8d4c6ca8d8f87b3706f
6
+ metadata.gz: 0c3334b6c532d21ebda0a8fc355a3e96df884c3424fac5d00068689d07efc07ad6e4dfe896303442b6e16ab08f501e220963c0bf714341101266cff5928a2e28
7
+ data.tar.gz: 6bb00ec1ea1f187a62ff30ec130bd20895bd835485c9e95a651a9f13a50bfff4216f57ab7aafe7f7cfb1c8f5227893d78676a57c3d4243f623f7f9890a6e81cf
data/Readme.md CHANGED
@@ -246,6 +246,7 @@ TIPS
246
246
  - [Distributed parallel test (e.g. Travis Support)](https://github.com/grosser/parallel_tests/wiki/Distributed-Parallel-Tests-and-Travis-Support)
247
247
  - Debug errors that only happen with multiple files using `--verbose` and [cleanser](https://github.com/grosser/cleanser)
248
248
  - Shell alias: `alias prspec='parallel_rspec -m 2 --'`
249
+ - [Spring] to use spring you have to [patch it](https://github.com/grosser/parallel_tests/wiki/Spring)
249
250
  - Contribute your own gotaches to the [Wiki](https://github.com/grosser/parallel_tests/wiki) or even better open a PR :)
250
251
 
251
252
  TODO
@@ -8,7 +8,7 @@ module ParallelTests
8
8
  def run(argv)
9
9
  options = parse_options!(argv)
10
10
 
11
- ENV['DISABLE_SPRING']='1'
11
+ ENV['DISABLE_SPRING'] ||= '1'
12
12
 
13
13
  num_processes = ParallelTests.determine_number_of_processes(options[:count])
14
14
  num_processes = num_processes * (options[:multiply] || 1)
@@ -19,7 +19,7 @@ module ParallelTests
19
19
  end
20
20
 
21
21
  # this is a crazy-complex solution for a very simple problem:
22
- # removing certain lines from the output without chaning the exit-status
22
+ # removing certain lines from the output without changing the exit-status
23
23
  # normally I'd not do this, but it has been lots of fun and a great learning experience :)
24
24
  #
25
25
  # - sed does not support | without -r
@@ -1,3 +1,3 @@
1
1
  module ParallelTests
2
- VERSION = Version = '2.2.0'
2
+ VERSION = Version = '2.2.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parallel_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.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-12-02 00:00:00.000000000 Z
11
+ date: 2015-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel