parallel_tests 0.6.11 → 0.6.12
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.
- data/Readme.md +3 -0
- data/VERSION +1 -1
- data/lib/parallel_specs/spec_logger_base.rb +1 -1
- data/parallel_tests.gemspec +2 -2
- metadata +5 -5
data/Readme.md
CHANGED
@@ -93,6 +93,7 @@ Add to your `spec/parallel_spec.opts` (or `spec/spec.opts`) :
|
|
93
93
|
|
94
94
|
RSpec 1.x:
|
95
95
|
--format progress
|
96
|
+
--require parallel_specs/spec_runtime_logger
|
96
97
|
--format ParallelSpecs::SpecRuntimeLogger:tmp/parallel_profile.log
|
97
98
|
RSpec >= 2.4:
|
98
99
|
If installed as plugin: -I vendor/plugins/parallel_tests/lib
|
@@ -108,6 +109,7 @@ Add the following to your `spec/parallel_spec.opts` (or `spec/spec.opts`) :
|
|
108
109
|
|
109
110
|
RSpec 1.x:
|
110
111
|
--format progress
|
112
|
+
--require parallel_specs/spec_summary_logger
|
111
113
|
--format ParallelSpecs::SpecSummaryLogger:tmp/spec_summary.log
|
112
114
|
RSpec >= 2.2:
|
113
115
|
If installed as plugin: -I vendor/plugins/parallel_tests/lib
|
@@ -127,6 +129,7 @@ Add the following to your `spec/parallel_spec.opts` (or `spec/spec.opts`) :
|
|
127
129
|
|
128
130
|
RSpec 1.x:
|
129
131
|
--format progress
|
132
|
+
--require parallel_specs/spec_failures_logger
|
130
133
|
--format ParallelSpecs::SpecFailuresLogger:tmp/failing_specs.log
|
131
134
|
RSpec >= 2.4:
|
132
135
|
If installed as plugin: -I vendor/plugins/parallel_tests/lib
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.12
|
@@ -10,7 +10,7 @@ end
|
|
10
10
|
ParallelSpecs::SpecLoggerBaseBase = base
|
11
11
|
|
12
12
|
class ParallelSpecs::SpecLoggerBase < ParallelSpecs::SpecLoggerBaseBase
|
13
|
-
RSPEC_1 = defined? Spec
|
13
|
+
RSPEC_1 = !defined?(RSpec::Core::Formatters::BaseTextFormatter) # do not test for Spec, this will trigger deprecation warning in rspec 2
|
14
14
|
|
15
15
|
def initialize(*args)
|
16
16
|
super
|
data/parallel_tests.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "parallel_tests"
|
8
|
-
s.version = "0.6.
|
8
|
+
s.version = "0.6.12"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Michael Grosser"]
|
12
|
-
s.date = "2011-
|
12
|
+
s.date = "2011-12-14"
|
13
13
|
s.email = "grosser.michael@gmail.com"
|
14
14
|
s.executables = ["parallel_cucumber", "parallel_spec", "parallel_test"]
|
15
15
|
s.files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parallel_tests
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.12
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-
|
12
|
+
date: 2011-12-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: parallel
|
16
|
-
requirement: &
|
16
|
+
requirement: &78880400 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *78880400
|
25
25
|
description:
|
26
26
|
email: grosser.michael@gmail.com
|
27
27
|
executables:
|
@@ -74,7 +74,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
74
|
version: '0'
|
75
75
|
segments:
|
76
76
|
- 0
|
77
|
-
hash: -
|
77
|
+
hash: -636115267
|
78
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
79
|
none: false
|
80
80
|
requirements:
|