ci_reporter 1.2.3 → 1.2.4

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.
@@ -1,3 +1,8 @@
1
+ == 1.2.4
2
+
3
+ - Allow to report on RSpec specs when working with non-gem RSpec
4
+ - Note: CI::Reporter is only compatible with RSpec up to 0.8.2
5
+
1
6
  == 1.2.3
2
7
 
3
8
  - Append to TESTOPTS and RSPECOPTS environment variables (Bret Pettichord) so that other apps can put values
data/README.txt CHANGED
@@ -4,6 +4,8 @@ CI::Reporter is an add-on to Test::Unit and RSpec that allows you to generate XM
4
4
 
5
5
  CI::Reporter has one required dependency on Builder, but since many will have a viable version of Builder via Rails' ActiveSupport gem, Builder is not a direct dependency of the project at the moment. Instead, ensure that you have either the +builder+ or +activesupport+ gem installed before continuing.
6
6
 
7
+ *NOTE*: As of this release, CI::Reporter is only compatible with RSpec up through version 0.8.2. The 0.9 series has introduced an incompatibility that has not been rectified yet.
8
+
7
9
  == Installation
8
10
 
9
11
  CI::Reporter is available as a gem. To install the gem, use the usual gem command:
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.3") do |p|
7
+ Hoe.new("ci_reporter", "1.2.4") do |p|
8
8
  p.rubyforge_name = "caldersphere"
9
9
  p.url = "http://caldersphere.rubyforge.org/ci_reporter"
10
10
  p.author = "Nick Sieger"
@@ -3,7 +3,12 @@
3
3
  # software license details.
4
4
 
5
5
  require 'ci/reporter/core'
6
- gem 'rspec'
6
+ begin
7
+ gem 'rspec'
8
+ rescue Gem::LoadError
9
+ # Needed for non-gem RSpec (e.g., reporting on RSpec's own specs);
10
+ # if spec isn't found, the next require will blow up
11
+ end
7
12
  require 'spec'
8
13
 
9
14
  module CI
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.3
7
- date: 2007-04-12 00:00:00 -05:00
6
+ version: 1.2.4
7
+ date: 2007-04-14 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