Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Preparing 1.2.3 release
git-svn-id: http://svn.caldersphere.net/svn/main/rubyforge/ci_reporter/trunk@86 b03c2d0b-2f10-0410-a2f9-fc8001506dfa
  • Loading branch information
nicksieger committed Apr 13, 2007
1 parent 9a03f6f commit f962e7d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions History.txt
@@ -1,3 +1,8 @@
== 1.2.3

- Append to TESTOPTS and RSPECOPTS environment variables (Bret Pettichord) so that other apps can put values
in them as well

== 1.2.2

- Responds to environment variable CI_CAPTURE: if set to "off", stdout/stderr capture will be disabled.
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -4,7 +4,7 @@ require 'hoe'
MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "LICENSE.txt", "Rakefile",
"lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake"]

Hoe.new("ci_reporter", "1.3") do |p|
Hoe.new("ci_reporter", "1.2.3") do |p|
p.rubyforge_name = "caldersphere"
p.url = "http://caldersphere.rubyforge.org/ci_reporter"
p.author = "Nick Sieger"
Expand Down
3 changes: 2 additions & 1 deletion lib/ci/reporter/rake/rspec.rb
Expand Up @@ -6,7 +6,8 @@
namespace :setup do
task :rspec do
rm_rf ENV["CI_REPORTS"] || "spec/reports"
ENV["RSPECOPTS"] = ["--require", "#{File.dirname(__FILE__)}/rspec_loader.rb",
ENV["RSPECOPTS"] ||= ""
ENV["RSPECOPTS"] += [" --require", "#{File.dirname(__FILE__)}/rspec_loader.rb",
"--format", "CI::Reporter::RSpec"].join(" ")
end
end
Expand Down
3 changes: 2 additions & 1 deletion lib/ci/reporter/rake/test_unit.rb
Expand Up @@ -6,7 +6,8 @@
namespace :setup do
task :testunit do
rm_rf ENV["CI_REPORTS"] || "test/reports"
ENV["TESTOPTS"] = "#{File.dirname(__FILE__)}/test_unit_loader.rb"
ENV["TESTOPTS"] ||= ""
ENV["TESTOPTS"] += " #{File.dirname(__FILE__)}/test_unit_loader.rb"
end
end
end

0 comments on commit f962e7d

Please sign in to comment.