parallel_tests 0.15.3 → 0.15.4

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: 325f02c0fe908d90aefd0f92ca27e3f232929f8b
4
- data.tar.gz: 285e87fa1189e7628ae0560cc889931719a26377
3
+ metadata.gz: d936eb5e0bbc52041661dcc09e82096324828819
4
+ data.tar.gz: ff153670996680697c17ffa1603ee2f0da17aa47
5
5
  SHA512:
6
- metadata.gz: df0c5f289a917b126fac521860c9005c05c661aa32eb5cacdde12a72633110a8d0b802e150a7027f8aa8189ebafd94a776f3cd293c23deaa1f6d37f5866d350d
7
- data.tar.gz: 03893ba586dd41e9e21f1c0b1ed1af8e41ec28b14af68f3344410994578d3aadafff691a82eeac1efb0f5444b2230bf44c188076a9de771beaba4e1b7e9c9d3e
6
+ metadata.gz: 97baa7391ea76b2092f6652d437d8166653c9938da739977c02e7f4c7857d4cb9ecea5610466c3dbea6952e0b1a8be0c0daf2ef78f801842adec6eddd817fc9d
7
+ data.tar.gz: 58dc573cf4b28df8518597a8b7b575506546b789d8cfcff18d08c169d608f941e9dfd64256a4704899fd24680b1bb2314740570c91db20ecad2158896b1e4e33
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- parallel_tests (0.15.3)
4
+ parallel_tests (0.15.4)
5
5
  parallel
6
6
 
7
7
  GEM
data/Readme.md CHANGED
@@ -153,6 +153,7 @@ Or add the formatter to the `parallel:` profile of your `cucumber.yml`:
153
153
 
154
154
  parallel: --format progress --format ParallelTests::Cucumber::FailuresLogger --out tmp/cucumber_failures.log
155
155
 
156
+ Note if your `cucumber.yml` default profile uses `<%= std_opts %>` you may need to insert this as follows `parallel: <%= std_opts %> --format progress...`
156
157
 
157
158
  To rerun failures:
158
159
 
@@ -218,6 +219,7 @@ TIPS
218
219
  - [RSpec] Instantly see failures (instead of just a red F) with [rspec-instafail](https://github.com/grosser/rspec-instafail)
219
220
  - [Bundler] if you have a `Gemfile` then `bundle exec` will be used to run tests
220
221
  - [Cucumber] add a `parallel: foo` profile to your `config/cucumber.yml` and it will be used to run parallel tests
222
+ - [Cucumber] Pass in cucumber options by not giving the options an identifier ex: parallel:features[x,y,'cucumber_opts']
221
223
  - [Capybara setup](https://github.com/grosser/parallel_tests/wiki)
222
224
  - [Sphinx setup](https://github.com/grosser/parallel_tests/wiki)
223
225
  - [Capistrano setup](https://github.com/grosser/parallel_tests/wiki/Remotely-with-capistrano) let your tests run on a big box instead of your laptop
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ require 'rubygems' if RUBY_VERSION < "1.9"
2
3
  $LOAD_PATH << File.expand_path("../../lib", __FILE__)
3
4
  require "parallel_tests"
4
5
 
@@ -1,3 +1,4 @@
1
+ require "rubygems"
1
2
  require "parallel"
2
3
  require "parallel_tests/railtie" if defined? Rails::Railtie
3
4
  require "rbconfig"
@@ -1,3 +1,3 @@
1
1
  module ParallelTests
2
- VERSION = Version = '0.15.3'
2
+ VERSION = Version = '0.15.4'
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: 0.15.3
4
+ version: 0.15.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-24 00:00:00.000000000 Z
11
+ date: 2013-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel