<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>LICENSE.txt</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,7 @@
+== 1.2.1
+
+- Add license and copyright information (finally)
+
 == 1.2
 
 - 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&amp;aid=9054&amp;group_id=2857&amp;atid=11007])</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -40,4 +40,8 @@ If for some reason you can't use the above technique to inject CI::Reporter (e.g
     --require GEM_PATH/lib/ci/reporter/rake/rspec_loader
     --format CI::Reporter::RSpec
 
-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.
\ No newline at end of file
+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.
+
+== License
+
+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 &lt;nicksieger@gmail.com&gt;.
\ No newline at end of file</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,10 @@
 require 'spec/rake/spectask'
 require 'hoe'
 
-MANIFEST = FileList[&quot;History.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;,
+MANIFEST = FileList[&quot;History.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.txt&quot;, &quot;LICENSE.txt&quot;, &quot;Rakefile&quot;,
   &quot;lib/**/*.rb&quot;, &quot;spec/**/*.rb&quot;, &quot;tasks/**/*.rake&quot;]
 
-Hoe.new(&quot;ci_reporter&quot;, &quot;1.2&quot;) do |p|
+Hoe.new(&quot;ci_reporter&quot;, &quot;1.2.1&quot;) do |p|
   p.rubyforge_name = &quot;caldersphere&quot;
   p.url = &quot;http://caldersphere.rubyforge.org/ci_reporter&quot;
   p.author = &quot;Nick Sieger&quot;</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,6 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'ci/reporter/test_suite'
 require 'ci/reporter/report_manager'
\ No newline at end of file</diff>
      <filename>lib/ci/reporter/core.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 namespace :ci do
   namespace :setup do
     task :rspec do</diff>
      <filename>lib/ci/reporter/rake/rspec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'rubygems'
 begin
   gem 'ci_reporter'</diff>
      <filename>lib/ci/reporter/rake/rspec_loader.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 namespace :ci do
   namespace :setup do
     task :testunit do</diff>
      <filename>lib/ci/reporter/rake/test_unit.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'rubygems'
 begin
   gem 'ci_reporter'</diff>
      <filename>lib/ci/reporter/rake/test_unit_loader.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'fileutils'
 
 module CI #:nodoc:</diff>
      <filename>lib/ci/reporter/report_manager.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'ci/reporter/core'
 gem 'rspec'
 require 'spec'</diff>
      <filename>lib/ci/reporter/rspec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'delegate'
 require 'stringio'
 </diff>
      <filename>lib/ci/reporter/test_suite.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'ci/reporter/core'
 require 'test/unit'
 require 'test/unit/ui/console/testrunner'</diff>
      <filename>lib/ci/reporter/test_unit.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require File.dirname(__FILE__) + &quot;/../../spec_helper.rb&quot;
 require 'rexml/document'
 </diff>
      <filename>spec/ci/reporter/output_capture_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require File.dirname(__FILE__) + &quot;/../../spec_helper.rb&quot;
 
 context &quot;The ReportManager&quot; do</diff>
      <filename>spec/ci/reporter/report_manager_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require File.dirname(__FILE__) + &quot;/../../spec_helper.rb&quot;
 require 'stringio'
 </diff>
      <filename>spec/ci/reporter/rspec_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require File.dirname(__FILE__) + &quot;/../../spec_helper.rb&quot;
 require 'rexml/document'
 </diff>
      <filename>spec/ci/reporter/test_suite_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require File.dirname(__FILE__) + &quot;/../../spec_helper.rb&quot;
 
 context &quot;The TestUnit reporter&quot; do</diff>
      <filename>spec/ci/reporter/test_unit_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 require 'rubygems'
 gem 'rspec'
 require 'spec'</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,7 @@
+# (c) Copyright 2006-2007 Nick Sieger &lt;nicksieger@gmail.com&gt;
+# See the file LICENSE.txt included with the distribution for
+# software license details.
+
 begin
   gem 'ci_reporter'
 rescue</diff>
      <filename>tasks/ci_reporter.rake</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>57b2e942909ad3a8e2bbd8aedb9fef967d5596ba</id>
    </parent>
  </parents>
  <author>
    <name>Nick</name>
    <email>nick@nicksieger.com</email>
  </author>
  <url>http://github.com/nicksieger/ci_reporter/commit/126c3073e7b5f7180e3ca87583b21ccfbce9d5de</url>
  <id>126c3073e7b5f7180e3ca87583b21ccfbce9d5de</id>
  <committed-date>2007-03-25T21:09:34-07:00</committed-date>
  <authored-date>2007-03-25T21:09:34-07:00</authored-date>
  <message>- Prepping 1.2.1 release


git-svn-id: http://svn.caldersphere.net/svn/main/rubyforge/ci_reporter/trunk@78 b03c2d0b-2f10-0410-a2f9-fc8001506dfa</message>
  <tree>75764cec6582b878082fc51cd644e1b4b2129cf3</tree>
  <committer>
    <name>Nick</name>
    <email>nick@nicksieger.com</email>
  </committer>
</commit>
