ci_reporter 1.2.2 → 1.2.3
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/History.txt +5 -0
- data/Rakefile +1 -1
- data/lib/ci/reporter/rake/rspec.rb +2 -1
- data/lib/ci/reporter/rake/test_unit.rb +2 -1
- 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.2.
|
7
|
+
Hoe.new("ci_reporter", "1.2.3") do |p|
|
8
8
|
p.rubyforge_name = "caldersphere"
|
9
9
|
p.url = "http://caldersphere.rubyforge.org/ci_reporter"
|
10
10
|
p.author = "Nick Sieger"
|
@@ -6,7 +6,8 @@ namespace :ci do
|
|
6
6
|
namespace :setup do
|
7
7
|
task :rspec do
|
8
8
|
rm_rf ENV["CI_REPORTS"] || "spec/reports"
|
9
|
-
ENV["RSPECOPTS"]
|
9
|
+
ENV["RSPECOPTS"] ||= ""
|
10
|
+
ENV["RSPECOPTS"] += [" --require", "#{File.dirname(__FILE__)}/rspec_loader.rb",
|
10
11
|
"--format", "CI::Reporter::RSpec"].join(" ")
|
11
12
|
end
|
12
13
|
end
|
@@ -6,7 +6,8 @@ namespace :ci do
|
|
6
6
|
namespace :setup do
|
7
7
|
task :testunit do
|
8
8
|
rm_rf ENV["CI_REPORTS"] || "test/reports"
|
9
|
-
ENV["TESTOPTS"]
|
9
|
+
ENV["TESTOPTS"] ||= ""
|
10
|
+
ENV["TESTOPTS"] += " #{File.dirname(__FILE__)}/test_unit_loader.rb"
|
10
11
|
end
|
11
12
|
end
|
12
13
|
end
|
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.2.
|
7
|
-
date: 2007-04-
|
6
|
+
version: 1.2.3
|
7
|
+
date: 2007-04-12 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
|