parallelized_specs 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +27 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/parallelized_specs/tasks.rb +1 -1
- data/lib/parallelized_specs.rb +0 -1
- data/parallelized_specs.gemspec +2 -2
- metadata +4 -4
data/Gemfile.lock
CHANGED
@@ -1,7 +1,34 @@
|
|
1
1
|
GEM
|
2
|
+
remote: http://rubygems.org/
|
2
3
|
specs:
|
4
|
+
diff-lcs (1.1.3)
|
5
|
+
git (1.2.5)
|
6
|
+
jeweler (1.8.3)
|
7
|
+
bundler (~> 1.0)
|
8
|
+
git (>= 1.2.5)
|
9
|
+
rake
|
10
|
+
rdoc
|
11
|
+
json (1.6.6)
|
12
|
+
parallel (0.5.16)
|
13
|
+
rake (0.9.2.2)
|
14
|
+
rdoc (3.12)
|
15
|
+
json (~> 1.4)
|
16
|
+
rspec (2.9.0)
|
17
|
+
rspec-core (~> 2.9.0)
|
18
|
+
rspec-expectations (~> 2.9.0)
|
19
|
+
rspec-mocks (~> 2.9.0)
|
20
|
+
rspec-core (2.9.0)
|
21
|
+
rspec-expectations (2.9.1)
|
22
|
+
diff-lcs (~> 1.1.3)
|
23
|
+
rspec-mocks (2.9.0)
|
24
|
+
test-unit (2.4.8)
|
3
25
|
|
4
26
|
PLATFORMS
|
5
27
|
ruby
|
6
28
|
|
7
29
|
DEPENDENCIES
|
30
|
+
jeweler
|
31
|
+
parallel
|
32
|
+
rake
|
33
|
+
rspec (>= 2.4)
|
34
|
+
test-unit
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.7
|
@@ -45,7 +45,7 @@ namespace :parallel do
|
|
45
45
|
task 'spec', :count, :pattern, :options, :arguments do |t, args|
|
46
46
|
count, pattern, options = ParallelizedSpecs.parse_rake_args(args)
|
47
47
|
#command = "-n #{count} -p '#{pattern}' -r '#{Rails.root}' -o '#{options}' #{args[:arguments]}"
|
48
|
-
opts =
|
48
|
+
opts = [:count => count, :pattern => pattern, :options => options, :root => Rails.root, :files => args[:arguments]]
|
49
49
|
ParallelizedSpecs.execute_parallel_specs(opts)
|
50
50
|
end
|
51
51
|
end
|
data/lib/parallelized_specs.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
require 'parallel'
|
2
2
|
raise "please ' gem install parallel '" if Gem::Version.new(Parallel::VERSION) < Gem::Version.new('0.4.2')
|
3
|
-
require 'optparse'
|
4
3
|
require 'parallelized_specs/grouper'
|
5
4
|
require 'parallelized_specs/railtie'
|
6
5
|
require 'parallelized_specs/spec_error_logger'
|
data/parallelized_specs.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "parallelized_specs"
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.7"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jake Sorce, Bryan Madsen"]
|
12
|
-
s.date = "2012-
|
12
|
+
s.date = "2012-05-02"
|
13
13
|
s.email = "jake@instructure.com"
|
14
14
|
s.files = [
|
15
15
|
"Gemfile",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parallelized_specs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 7
|
10
|
+
version: 0.1.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jake Sorce, Bryan Madsen
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-05-02 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: parallel
|