ci_reporter 1.3.4 → 1.3.5

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 CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.3.5
2
+
3
+ - Change way we append to environment variables to appease windows (Tracker #13998, Adam Anderson)
4
+
1
5
  == 1.3.4
2
6
 
3
7
  - Call #to_s on the object passed in as the test suite name; compatibility fix for RSpec
data/Manifest.txt CHANGED
@@ -13,6 +13,7 @@ lib/ci/reporter/report_manager.rb
13
13
  lib/ci/reporter/rspec.rb
14
14
  lib/ci/reporter/test_suite.rb
15
15
  lib/ci/reporter/test_unit.rb
16
+ lib/ci/reporter/version.rb
16
17
  spec/ci/reporter/output_capture_spec.rb
17
18
  spec/ci/reporter/rake/rake_tasks_spec.rb
18
19
  spec/ci/reporter/report_manager_spec.rb
data/Rakefile CHANGED
@@ -3,9 +3,11 @@ require 'spec/rake/spectask'
3
3
  MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "LICENSE.txt", "Rakefile",
4
4
  "*.rake", "lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake"]
5
5
 
6
+ require File.dirname(__FILE__) + '/lib/ci/reporter/version'
6
7
  begin
8
+ touch("Manifest.txt") unless File.exist?("Manifest.txt")
7
9
  require 'hoe'
8
- hoe = Hoe.new("ci_reporter", "1.3.4") do |p|
10
+ hoe = Hoe.new("ci_reporter", CI::Reporter::VERSION) do |p|
9
11
  p.rubyforge_name = "caldersphere"
10
12
  p.url = "http://caldersphere.rubyforge.org/ci_reporter"
11
13
  p.author = "Nick Sieger"
@@ -6,14 +6,11 @@ namespace :ci do
6
6
  namespace :setup do
7
7
  task :rspec do
8
8
  rm_rf ENV["CI_REPORTS"] || "spec/reports"
9
-
10
9
  spec_opts = ["--require", "#{File.dirname(__FILE__)}/rspec_loader.rb",
11
10
  "--format", "CI::Reporter::RSpec"].join(" ")
12
- ENV["SPEC_OPTS"] ||= ""
13
- ENV["SPEC_OPTS"] += spec_opts
11
+ ENV["SPEC_OPTS"] = "#{ENV['SPEC_OPTS']} #{spec_opts}"
14
12
  # Pre RSpec 1.0.6
15
- ENV["RSPECOPTS"] ||= ""
16
- ENV["RSPECOPTS"] += spec_opts
13
+ ENV["RSPECOPTS"] = "#{ENV['RSPECOPTS']} #{spec_opts}"
17
14
  end
18
15
  end
19
16
  end
@@ -6,8 +6,7 @@ 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"] ||= ""
10
- ENV["TESTOPTS"] += " #{File.dirname(__FILE__)}/test_unit_loader.rb"
9
+ ENV["TESTOPTS"] = "#{ENV["TESTOPTS"]} #{File.dirname(__FILE__)}/test_unit_loader.rb"
11
10
  end
12
11
  end
13
12
  end
@@ -0,0 +1,5 @@
1
+ module CI
2
+ module Reporter
3
+ VERSION = "1.3.5"
4
+ end
5
+ end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: ci_reporter
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.3.4
7
- date: 2007-08-29 00:00:00 -05:00
6
+ version: 1.3.5
7
+ date: 2007-09-25 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
@@ -44,6 +44,7 @@ files:
44
44
  - lib/ci/reporter/rspec.rb
45
45
  - lib/ci/reporter/test_suite.rb
46
46
  - lib/ci/reporter/test_unit.rb
47
+ - lib/ci/reporter/version.rb
47
48
  - spec/ci/reporter/output_capture_spec.rb
48
49
  - spec/ci/reporter/rake/rake_tasks_spec.rb
49
50
  - spec/ci/reporter/report_manager_spec.rb