parallelized_specs 0.4.00 → 0.4.01
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/Rakefile +1 -1
- data/lib/parallelized_specs.rb +2 -2
- data/parallelized_specs.gemspec +1 -1
- metadata +1 -1
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.4.
|
|
15
|
+
gem.version = "0.4.01"
|
|
16
16
|
end
|
|
17
17
|
Jeweler::GemcutterTasks.new
|
|
18
18
|
rescue LoadError
|
data/lib/parallelized_specs.rb
CHANGED
|
@@ -110,7 +110,7 @@ class ParallelizedSpecs
|
|
|
110
110
|
#parse and print results
|
|
111
111
|
results = find_results(test_results.map { |result| result[:stdout] }*"")
|
|
112
112
|
#puts ""
|
|
113
|
-
|
|
113
|
+
puts summarize_results(results)
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
#report total time taken
|
|
@@ -372,7 +372,7 @@ class ParallelizedSpecs
|
|
|
372
372
|
end
|
|
373
373
|
|
|
374
374
|
def self.calculate_error_count()
|
|
375
|
-
@error_count = %x{wc -l "#{filename}"}.match(/\d*[^\D]/).to_s #counts the number of lines in the file
|
|
375
|
+
@error_count = %x{wc -l "#{@filename}"}.match(/\d*[^\D]/).to_s #counts the number of lines in the file
|
|
376
376
|
@error_count = @error_count.to_i
|
|
377
377
|
end
|
|
378
378
|
|
data/parallelized_specs.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "parallelized_specs"
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.01"
|
|
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"]
|