Skip to content

Commit

Permalink
silence version warning fixes grosser#24 at last
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Nov 2, 2011
1 parent 8457ca7 commit c2b413d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Readme.md
Expand Up @@ -95,7 +95,7 @@ Add to your `spec/parallel_spec.opts` (or `spec/spec.opts`) :
--format progress
--format ParallelSpecs::SpecRuntimeLogger:tmp/parallel_profile.log
RSpec >= 2.4:
Installed as plugin: -I vendor/plugins/parallel_tests/lib
If installed as plugin: -I vendor/plugins/parallel_tests/lib
--format progress
--format ParallelSpecs::SpecRuntimeLogger --out tmp/parallel_profile.log

Expand All @@ -110,6 +110,7 @@ Add the following to your `spec/parallel_spec.opts` (or `spec/spec.opts`) :
--format progress
--format ParallelSpecs::SpecSummaryLogger:tmp/spec_summary.log
RSpec >= 2.2:
If installed as plugin: -I vendor/plugins/parallel_tests/lib
--format progress
--format ParallelSpecs::SpecSummaryLogger --out tmp/spec_summary.log

Expand All @@ -125,8 +126,11 @@ E.g.
Add the following to your `spec/parallel_spec.opts` (or `spec/spec.opts`) :

RSpec 1.x:
--format progress
--format ParallelSpecs::SpecFailuresLogger:tmp/failing_specs.log
RSpec >= 2.4:
If installed as plugin: -I vendor/plugins/parallel_tests/lib
--format progress
--format ParallelSpecs::SpecFailuresLogger --out tmp/failing_specs.log

Setup for non-rails
Expand Down
2 changes: 1 addition & 1 deletion lib/parallel_cucumber.rb
@@ -1,4 +1,4 @@
require File.join(File.dirname(__FILE__), 'parallel_tests')
require 'parallel_tests'

class ParallelCucumber < ParallelTests
def self.run_tests(test_files, process_number, options)
Expand Down
2 changes: 1 addition & 1 deletion lib/parallel_specs.rb
@@ -1,4 +1,4 @@
require File.join(File.dirname(__FILE__), 'parallel_tests')
require 'parallel_tests'

class ParallelSpecs < ParallelTests
def self.run_tests(test_files, process_number, options)
Expand Down

0 comments on commit c2b413d

Please sign in to comment.