public
Description: CI::Reporter is an add-on to Test::Unit and RSpec that allows you to generate XML reports of your test and/or spec runs.
Homepage: http://caldersphere.rubyforge.org/ci_reporter
Clone URL: git://github.com/nicksieger/ci_reporter.git
- Prepping 1.2.1 release


git-svn-id: 
http://svn.caldersphere.net/svn/main/rubyforge/ci_reporter/trunk@78 
b03c2d0b-2f10-0410-a2f9-fc8001506dfa
nicksieger (author)
Sun Mar 25 21:09:34 -0700 2007
commit  126c3073e7b5f7180e3ca87583b21ccfbce9d5de
tree    75764cec6582b878082fc51cd644e1b4b2129cf3
parent  57b2e942909ad3a8e2bbd8aedb9fef967d5596ba
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+== 1.2.1
0
+
0
+- Add license and copyright information (finally)
0
+
0
 == 1.2
0
 
0
 - Capture standard output and standard error during each individual test suite and include in the XML file in system-out and system-err elements, respectively (Tracker#9054[http://rubyforge.org/tracker/index.php?func=detail&aid=9054&group_id=2857&atid=11007])
...
40
41
42
43
44
 
 
 
 
 
45
...
40
41
42
 
43
44
45
46
47
48
49
0
@@ -40,4 +40,8 @@ If for some reason you can't use the above technique to inject CI::Reporter (e.g
0
     --require GEM_PATH/lib/ci/reporter/rake/rspec_loader
0
     --format CI::Reporter::RSpec
0
 
0
-There's a bit of a chicken and egg problem because rubygems needs to be loaded before you can require any CI::Reporter files. If you cringe hard-coding a full path to a specific version of the gem, you can also copy the +rspec_loader+ file into your project and require it directly -- the contents are version-agnostic and are not likely to change in future releases.
0
\ No newline at end of file
0
+There's a bit of a chicken and egg problem because rubygems needs to be loaded before you can require any CI::Reporter files. If you cringe hard-coding a full path to a specific version of the gem, you can also copy the +rspec_loader+ file into your project and require it directly -- the contents are version-agnostic and are not likely to change in future releases.
0
+
0
+== License
0
+
0
+This software is released under an MIT license. For details, see the LICENSE.txt file included with the distribution. The software is copyright (c) 2006-2007 Nick Sieger <nicksieger@gmail.com>.
0
\ No newline at end of file
...
1
2
3
4
 
5
6
7
 
8
9
10
...
1
2
3
 
4
5
6
 
7
8
9
10
0
@@ -1,10 +1,10 @@
0
 require 'spec/rake/spectask'
0
 require 'hoe'
0
 
0
-MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "Rakefile",
0
+MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "LICENSE.txt", "Rakefile",
0
   "lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake"]
0
 
0
-Hoe.new("ci_reporter", "1.2") do |p|
0
+Hoe.new("ci_reporter", "1.2.1") do |p|
0
   p.rubyforge_name = "caldersphere"
0
   p.url = "http://caldersphere.rubyforge.org/ci_reporter"
0
   p.author = "Nick Sieger"
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,2 +1,6 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'ci/reporter/test_suite'
0
 require 'ci/reporter/report_manager'
0
\ No newline at end of file
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 namespace :ci do
0
   namespace :setup do
0
     task :rspec do
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'rubygems'
0
 begin
0
   gem 'ci_reporter'
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 namespace :ci do
0
   namespace :setup do
0
     task :testunit do
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'rubygems'
0
 begin
0
   gem 'ci_reporter'
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'fileutils'
0
 
0
 module CI #:nodoc:
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'ci/reporter/core'
0
 gem 'rspec'
0
 require 'spec'
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'delegate'
0
 require 'stringio'
0
 
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'ci/reporter/core'
0
 require 'test/unit'
0
 require 'test/unit/ui/console/testrunner'
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require File.dirname(__FILE__) + "/../../spec_helper.rb"
0
 require 'rexml/document'
0
 
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require File.dirname(__FILE__) + "/../../spec_helper.rb"
0
 
0
 context "The ReportManager" do
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require File.dirname(__FILE__) + "/../../spec_helper.rb"
0
 require 'stringio'
0
 
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require File.dirname(__FILE__) + "/../../spec_helper.rb"
0
 require 'rexml/document'
0
 
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require File.dirname(__FILE__) + "/../../spec_helper.rb"
0
 
0
 context "The TestUnit reporter" do
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 require 'rubygems'
0
 gem 'rspec'
0
 require 'spec'
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+# (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
0
+# See the file LICENSE.txt included with the distribution for
0
+# software license details.
0
+
0
 begin
0
   gem 'ci_reporter'
0
 rescue

Comments

    No one has commented yet.