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 CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.3.1
2
+
3
+ - Fixed to be compatible with RSpec 1.0.x (added fourth parameter to Formatter#dump_summary)
4
+
1
5
  == 1.3
2
6
 
3
7
  - Fixed to be compatible with RSpec 0.9
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"
@@ -106,8 +106,12 @@ module CI
106
106
  super
107
107
  end
108
108
 
109
- def dump_summary(duration, example_count, failure_count)
110
- super
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: "1.3"
7
- date: 2007-05-17 00:00:00 -07:00
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