parallel_tests 0.16.9 → 0.16.10
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/Gemfile.lock +1 -1
- data/lib/parallel_tests/tasks.rb +4 -0
- data/lib/parallel_tests/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77fd35ad834272e66aae38d5b06f7ab5ffb3ec32
|
|
4
|
+
data.tar.gz: c248b869667fdacbf29d92dd9925de40d34a1fde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46f2ad3d0747920f504502fd21418613a884dc6a1b563c90918eccf6b19bb32e6303420a3862b2c2698340cb769bc330f9290e18c07c08b962377e1a6392908d
|
|
7
|
+
data.tar.gz: f1282e2c02c13dd6ad09f09f19a5b232cfd996246094f5ac55156007c78e420707c85997e532fa3a9bd70f165785f211d621f379953f77bc79529f4afcabeba1
|
data/Gemfile.lock
CHANGED
data/lib/parallel_tests/tasks.rb
CHANGED
|
@@ -147,6 +147,10 @@ namespace :parallel do
|
|
|
147
147
|
"-n #{count} " \
|
|
148
148
|
"--pattern '#{pattern}' " \
|
|
149
149
|
"--test-options '#{options}'"
|
|
150
|
+
if RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|mingw|bccwin|wince|emx/
|
|
151
|
+
ruby_binary = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name'])
|
|
152
|
+
command = "#{ruby_binary} #{command}"
|
|
153
|
+
end
|
|
150
154
|
abort unless system(command) # allow to chain tasks e.g. rake parallel:spec parallel:features
|
|
151
155
|
end
|
|
152
156
|
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: 0.16.
|
|
4
|
+
version: 0.16.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Grosser
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|