ci_reporter 1.3 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Rakefile +1 -1
- data/lib/ci/reporter/rspec.rb +6 -2
- metadata +2 -2
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -4,7 +4,7 @@ require 'hoe'
|
|
4
4
|
MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "LICENSE.txt", "Rakefile",
|
5
5
|
"lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake"]
|
6
6
|
|
7
|
-
Hoe.new("ci_reporter", "1.3") do |p|
|
7
|
+
Hoe.new("ci_reporter", "1.3.1") do |p|
|
8
8
|
p.rubyforge_name = "caldersphere"
|
9
9
|
p.url = "http://caldersphere.rubyforge.org/ci_reporter"
|
10
10
|
p.author = "Nick Sieger"
|
data/lib/ci/reporter/rspec.rb
CHANGED
@@ -106,8 +106,12 @@ module CI
|
|
106
106
|
super
|
107
107
|
end
|
108
108
|
|
109
|
-
def dump_summary(duration, example_count, failure_count)
|
110
|
-
|
109
|
+
def dump_summary(duration, example_count, failure_count, not_implemented_count = nil)
|
110
|
+
begin
|
111
|
+
super
|
112
|
+
rescue ArgumentError
|
113
|
+
super(duration, example_count, failure_count)
|
114
|
+
end
|
111
115
|
write_report
|
112
116
|
end
|
113
117
|
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ci_reporter
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version:
|
7
|
-
date: 2007-05-
|
6
|
+
version: 1.3.1
|
7
|
+
date: 2007-05-30 00:00:00 -05:00
|
8
8
|
summary: CI::Reporter allows you to generate reams of XML for use with continuous integration systems.
|
9
9
|
require_paths:
|
10
10
|
- lib
|