parallelized_specs 0.3.80 → 0.3.81

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ begin
12
12
  gem.email = "jake@instructure.com"
13
13
  gem.homepage = "http://github.com/jakesorce/#{gem.name}"
14
14
  gem.authors = "Jake Sorce, Bryan Madsen, Shawn Meredith"
15
- gem.version = "0.3.80"
15
+ gem.version = "0.3.81"
16
16
  end
17
17
  Jeweler::GemcutterTasks.new
18
18
  rescue LoadError
@@ -124,10 +124,10 @@ class ParallelizedSpecs
124
124
  failed_thread = t.match(/\d/).to_s
125
125
  if failed_thread == "1"
126
126
  puts "Thread 1 last spec to start running"
127
- puts IO.readlines("tmp/parallel_log/thread_")[-1]
127
+ puts IO.readlines("tmp/parallel_log/thread_.log")[-1]
128
128
  else
129
129
  puts "Thread #{failed_thread} last spec to start running"
130
- puts IO.readlines("tmp/parallel_log/thread_#{failed_thread}")[-1]
130
+ puts IO.readlines("tmp/parallel_log/thread_#{failed_thread}.log")[-1]
131
131
  end
132
132
  end
133
133
  (abort "One or more threads have failed, see above logging information for details") #works on both 1.8.7\1.9.3
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "parallelized_specs"
8
- s.version = "0.3.80"
8
+ s.version = "0.3.81"
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, Shawn Meredith"]
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: 179
4
+ hash: 177
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 80
10
- version: 0.3.80
9
+ - 81
10
+ version: 0.3.81
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jake Sorce, Bryan Madsen, Shawn Meredith