<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>LICENSE.txt</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,5 @@
 CHANGELOG
-COPYING
+LICENSE.txt
 README.rdoc
 Rakefile
 lib</diff>
      <filename>.manifest</filename>
    </modified>
    <modified>
      <diff>@@ -121,18 +121,20 @@ like OpenURI, as well as a ton of libraries for popular web services.
 
 Copyright 2006-2007 Blaine Cook
 
-Copyright 2008 various contributors
+Copyright 2008-2009 various contributors
 
-FakeWeb is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+  FakeWeb is free software; you can redistribute it and/or modify it under the
+  terms of the GNU General Public License as published by the Free Software
+  Foundation; either version 2 of the License, or (at your option) any later
+  version.
 
-FakeWeb is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+  FakeWeb is distributed in the hope that it will be useful, but WITHOUT ANY
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+  FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+  details.
 
-You should have received a copy of the GNU General Public License
-along with FakeWeb; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+  You should have received a copy of the GNU General Public License along
+  with FakeWeb; if not, write to the Free Software Foundation, Inc., 51
+  Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+See LICENSE.txt[link:files/LICENSE_txt.html] for the full terms.
\ No newline at end of file</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,3 @@
-# FakeWeb - Ruby Helper for Faking Web Requests
-# Copyright 2006 Blaine Cook &lt;romeda@gmail.com&gt;.
-# 
-# FakeWeb is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-# 
-# FakeWeb is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-# 
-# You should have received a copy of the GNU General Public License
-# along with FakeWeb; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
 require 'rubygems'
 require 'rake/testtask'
 require 'rake/rdoctask'
@@ -32,7 +15,7 @@ desc &quot;Generate Documentation&quot;
 Rake::RDocTask.new do |rdoc|
   rdoc.main = &quot;README.rdoc&quot;
   rdoc.rdoc_dir = &quot;doc&quot;
-  rdoc.rdoc_files.include(&quot;README.rdoc&quot;, &quot;COPYING&quot;, &quot;CHANGELOG&quot;, &quot;lib/*.rb&quot;)
+  rdoc.rdoc_files.include(&quot;README.rdoc&quot;, &quot;CHANGELOG&quot;, &quot;LICENSE.txt&quot;, &quot;lib/*.rb&quot;)
   rdoc.title = &quot;FakeWeb API Documentation&quot;
   rdoc.options &lt;&lt; '--line-numbers' &lt;&lt; '--inline-source'
   rdoc.options &lt;&lt; '--charset' &lt;&lt; 'utf-8'</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
   s.homepage = &quot;http://github.com/chrisk/fakeweb&quot;
   s.has_rdoc = true
   s.authors  = [&quot;Blaine Cook&quot;]
-  s.files    = %w(CHANGELOG COPYING README.rdoc Rakefile lib lib/fake_net_http.rb lib/fake_web.rb test test/fixtures test/fixtures/test_example.txt test/fixtures/test_request test/test_allow_net_connect.rb test/test_fake_web.rb test/test_fake_web_open_uri.rb test/test_helper.rb test/test_query_string.rb)
+  s.files    = %w(CHANGELOG LICENSE.txt README.rdoc Rakefile lib lib/fake_net_http.rb lib/fake_web.rb test test/fixtures test/fixtures/test_example.txt test/fixtures/test_request test/test_allow_net_connect.rb test/test_fake_web.rb test/test_fake_web_open_uri.rb test/test_helper.rb test/test_query_string.rb)
   s.test_files = %w(test/fixtures test/fixtures/test_example.txt test/fixtures/test_request test/test_allow_net_connect.rb test/test_fake_web.rb test/test_fake_web_open_uri.rb test/test_helper.rb test/test_query_string.rb)
   s.rdoc_options = [&quot;--main&quot;, &quot;README.rdoc&quot;]
-  s.extra_rdoc_files = [&quot;CHANGELOG&quot;, &quot;COPYING&quot;, &quot;README.rdoc&quot;]
+  s.extra_rdoc_files = [&quot;CHANGELOG&quot;, &quot;LICENSE.txt&quot;, &quot;README.rdoc&quot;]
 end
\ No newline at end of file</diff>
      <filename>fakeweb.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,3 @@
-# FakeWeb - Ruby Helper for Faking Web Requests
-# Copyright 2006 Blaine Cook &lt;romeda@gmail.com&gt;.
-#
-# FakeWeb is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# FakeWeb is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with FakeWeb; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
 require 'net/http'
 require 'net/https'
 require 'stringio'</diff>
      <filename>lib/fake_net_http.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,3 @@
-# FakeWeb - Ruby Helper for Faking Web Requests
-# Copyright 2006 Blaine Cook &lt;romeda@gmail.com&gt;.
-# 
-# FakeWeb is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-# 
-# FakeWeb is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-# 
-# You should have received a copy of the GNU General Public License
-# along with FakeWeb; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
 require 'fake_net_http'
 require 'singleton'
 </diff>
      <filename>lib/fake_web.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,3 @@
-# FakeWeb - Ruby Helper for Faking Web Requests
-# Copyright 2006 Blaine Cook &lt;romeda@gmail.com&gt;.
-#
-# FakeWeb is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# FakeWeb is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with FakeWeb; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
 require File.join(File.dirname(__FILE__), &quot;test_helper&quot;)
 
 class TestFakeWeb &lt; Test::Unit::TestCase</diff>
      <filename>test/test_fake_web.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,3 @@
-# FakeWeb - Ruby Helper for Faking Web Requests
-# Copyright 2006 Blaine Cook &lt;romeda@gmail.com&gt;.
-# 
-# FakeWeb is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-# 
-# FakeWeb is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-# 
-# You should have received a copy of the GNU General Public License
-# along with FakeWeb; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-
 require File.join(File.dirname(__FILE__), &quot;test_helper&quot;)
 
 class TestFakeWebOpenURI &lt; Test::Unit::TestCase</diff>
      <filename>test/test_fake_web_open_uri.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>COPYING</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>ff14175b8f5478fbf0b3ca74da47db582be472cd</id>
    </parent>
  </parents>
  <author>
    <name>Chris Kampmeier</name>
    <email>chris@kampers.net</email>
  </author>
  <url>http://github.com/chrisk/fakeweb/commit/273e01b8261f4822fb97b318a292434b5e5ebf0c</url>
  <id>273e01b8261f4822fb97b318a292434b5e5ebf0c</id>
  <committed-date>2009-01-01T14:03:07-08:00</committed-date>
  <authored-date>2009-01-01T14:03:07-08:00</authored-date>
  <message>DRY up license/copyright info</message>
  <tree>986ee3b6de20d61ae7eff5506f6c44e37b041d3a</tree>
  <committer>
    <name>Chris Kampmeier</name>
    <email>chris@kampers.net</email>
  </committer>
</commit>
