ci_reporter 1.2 → 1.2.1

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.2.1
2
+
3
+ - Add license and copyright information (finally)
4
+
1
5
  == 1.2
2
6
 
3
7
  - 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])
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person
4
+ # obtaining a copy of this software and associated documentation files
5
+ # (the "Software"), to deal in the Software without restriction,
6
+ # including without limitation the rights to use, copy, modify, merge,
7
+ # publish, distribute, sublicense, and/or sell copies of the Software,
8
+ # and to permit persons to whom the Software is furnished to do so,
9
+ # subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be
12
+ # included in all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
18
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
data/Manifest.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  History.txt
2
2
  Manifest.txt
3
3
  README.txt
4
+ LICENSE.txt
4
5
  Rakefile
5
6
  lib/ci/reporter/core.rb
6
7
  lib/ci/reporter/report_manager.rb
data/README.txt CHANGED
@@ -40,4 +40,8 @@ If for some reason you can't use the above technique to inject CI::Reporter (e.g
40
40
  --require GEM_PATH/lib/ci/reporter/rake/rspec_loader
41
41
  --format CI::Reporter::RSpec
42
42
 
43
- 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.
43
+ 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.
44
+
45
+ == License
46
+
47
+ 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>.
data/Rakefile CHANGED
@@ -1,10 +1,10 @@
1
1
  require 'spec/rake/spectask'
2
2
  require 'hoe'
3
3
 
4
- MANIFEST = FileList["History.txt", "Manifest.txt", "README.txt", "Rakefile",
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") do |p|
7
+ Hoe.new("ci_reporter", "1.2.1") do |p|
8
8
  p.rubyforge_name = "caldersphere"
9
9
  p.url = "http://caldersphere.rubyforge.org/ci_reporter"
10
10
  p.author = "Nick Sieger"
@@ -1,2 +1,6 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'ci/reporter/test_suite'
2
6
  require 'ci/reporter/report_manager'
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  namespace :ci do
2
6
  namespace :setup do
3
7
  task :rspec do
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'rubygems'
2
6
  begin
3
7
  gem 'ci_reporter'
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  namespace :ci do
2
6
  namespace :setup do
3
7
  task :testunit do
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'rubygems'
2
6
  begin
3
7
  gem 'ci_reporter'
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'fileutils'
2
6
 
3
7
  module CI #:nodoc:
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'ci/reporter/core'
2
6
  gem 'rspec'
3
7
  require 'spec'
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'delegate'
2
6
  require 'stringio'
3
7
 
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'ci/reporter/core'
2
6
  require 'test/unit'
3
7
  require 'test/unit/ui/console/testrunner'
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require File.dirname(__FILE__) + "/../../spec_helper.rb"
2
6
  require 'rexml/document'
3
7
 
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require File.dirname(__FILE__) + "/../../spec_helper.rb"
2
6
 
3
7
  context "The ReportManager" do
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require File.dirname(__FILE__) + "/../../spec_helper.rb"
2
6
  require 'stringio'
3
7
 
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require File.dirname(__FILE__) + "/../../spec_helper.rb"
2
6
  require 'rexml/document'
3
7
 
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require File.dirname(__FILE__) + "/../../spec_helper.rb"
2
6
 
3
7
  context "The TestUnit reporter" do
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  require 'rubygems'
2
6
  gem 'rspec'
3
7
  require 'spec'
@@ -1,3 +1,7 @@
1
+ # (c) Copyright 2006-2007 Nick Sieger <nicksieger@gmail.com>
2
+ # See the file LICENSE.txt included with the distribution for
3
+ # software license details.
4
+
1
5
  begin
2
6
  gem 'ci_reporter'
3
7
  rescue
metadata CHANGED
@@ -3,7 +3,7 @@ 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"
6
+ version: 1.2.1
7
7
  date: 2007-03-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:
@@ -32,6 +32,7 @@ files:
32
32
  - History.txt
33
33
  - Manifest.txt
34
34
  - README.txt
35
+ - LICENSE.txt
35
36
  - Rakefile
36
37
  - lib/ci/reporter/core.rb
37
38
  - lib/ci/reporter/report_manager.rb