<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,49 +1 @@
-=== 0.6.4 :: 2008-05-26
-
-* Patched bundled Camping library to allow setting expiry time on cookies.
-* CLI initializer can now be fed an alternate module name for your application.
-  This will override the module that would have been guessed based on the
-  app's name.
-* Fixed bug where HTTPS operation didn't work under Webrick. You should now
-  again be able to serve over HTTPS when using webrick by supplying the
-  ssl_cert configuration option.
-  See: http://code.google.com/p/rubycas-server/issues/detail?id=45
-* Fixed bug where the log file was being truncuated whenever the server
-  was started in daemon mode.
-
-=== 0.6.3 :: 2008-03-14
-
-* Fixed bug in mongrel postamble that prevented the server from starting when
-  the log level was set to DEBUG.
-
-=== 0.6.2 :: 2008-03-06
-
-* Fixed some loading problems having to do with the new CAS authenticator
-  introduced in 0.6.0.
-
-=== 0.6.1 :: 2008-02-28
-
-* Fixed bug introduced in 0.6.0 where webrick and mongrel postambles were
-  broken for apps that don't define any public directories.
-* Each public directory mount is now logged during startup. Also resolved
-  some potential issues with the uri_path config option. Multiple /'s
-  in the path are now automatically removed.
-
-=== 0.6.0 :: 2008-02-26
-
-* Added support for CAS authentication. See picnic/authentication.rb for 
-  details.
-* Webrick and Mongrel can now be made to bind to a specific IP address using
-  the :bind_address option. If no :bind_address is specified, the server will
-  listen on all addresses (i.e. '0.0.0.0').
-* The Public controller for serving the '/public' directory is gone. It has
-  been replaced by respective Webrick and Mongrel mechanisms for serving
-  directory contents, since these are much faster. If you're using CGI/FastCGI,
-  you'll have to manually configure your web server (i.e. probably Apache)
-  to serve your public directory contents.
-* The gem package now correctly recognizes markaby as a required
-  dependency.
-
-=== 0.5.0 :: 2007-12-20
-
-* First public release.
\ No newline at end of file
+See History.txt
\ No newline at end of file</diff>
      <filename>CHANGELOG.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1,53 @@
-See CHANGELOG.txt
\ No newline at end of file
+=== 0.6.5 :: 2008-09-18
+
+* Fixed compatibility with ActiveSupport 2.1.
+
+=== 0.6.4 :: 2008-05-26
+
+* Patched bundled Camping library to allow setting expiry time on cookies.
+* CLI initializer can now be fed an alternate module name for your application.
+  This will override the module that would have been guessed based on the
+  app's name.
+* Fixed bug where HTTPS operation didn't work under Webrick. You should now
+  again be able to serve over HTTPS when using webrick by supplying the
+  ssl_cert configuration option.
+  See: http://code.google.com/p/rubycas-server/issues/detail?id=45
+* Fixed bug where the log file was being truncuated whenever the server
+  was started in daemon mode.
+
+=== 0.6.3 :: 2008-03-14
+
+* Fixed bug in mongrel postamble that prevented the server from starting when
+  the log level was set to DEBUG.
+
+=== 0.6.2 :: 2008-03-06
+
+* Fixed some loading problems having to do with the new CAS authenticator
+  introduced in 0.6.0.
+
+=== 0.6.1 :: 2008-02-28
+
+* Fixed bug introduced in 0.6.0 where webrick and mongrel postambles were
+  broken for apps that don't define any public directories.
+* Each public directory mount is now logged during startup. Also resolved
+  some potential issues with the uri_path config option. Multiple /'s
+  in the path are now automatically removed.
+
+=== 0.6.0 :: 2008-02-26
+
+* Added support for CAS authentication. See picnic/authentication.rb for 
+  details.
+* Webrick and Mongrel can now be made to bind to a specific IP address using
+  the :bind_address option. If no :bind_address is specified, the server will
+  listen on all addresses (i.e. '0.0.0.0').
+* The Public controller for serving the '/public' directory is gone. It has
+  been replaced by respective Webrick and Mongrel mechanisms for serving
+  directory contents, since these are much faster. If you're using CGI/FastCGI,
+  you'll have to manually configure your web server (i.e. probably Apache)
+  to serve your public directory contents.
+* The gem package now correctly recognizes markaby as a required
+  dependency.
+
+=== 0.5.0 :: 2007-12-20
+
+* First public release.
\ No newline at end of file</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -54,6 +54,9 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
   #p.extra_deps     - An array of rubygem dependencies.
   #p.spec_extras    - A hash of extra values to set in the gemspec.
   
-  # note that camping-1.5.0.180 is now bundled with picnic the vendor directory, 
-  p.extra_deps = ['markaby']
+  # note that camping-1.5.0.180 is now bundled with picnic in the vendor directory. 
+  p.extra_deps = [
+    'markaby',
+    ['activesupport', '&gt;=2.0.2']
+  ]
 end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@ unless Object.const_defined?(:ActiveSupport)
     require 'active_support'
   rescue LoadError
     require 'rubygems'
-    gem 'activesupport', '~&gt;2.1.1'
-    gem 'activerecord', '~&gt;2.1.1'
+    gem 'activesupport', '&gt;=2.0.2'
+    gem 'activerecord', '&gt;=2.0.2'
     require 'active_support'
   end
 end</diff>
      <filename>lib/picnic.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module Picnic #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
     MINOR = 6
-    TINY  = 4
+    TINY  = 5
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/picnic/version.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0a74b6abca516521d6aa42415b4782d101b0f3de</id>
    </parent>
  </parents>
  <author>
    <name>zuk</name>
    <email>matt@zukowski.ca</email>
  </author>
  <url>http://github.com/zuk/picnic/commit/bd4598ccf115250e6c6b19c770bdd97ba5532fe2</url>
  <id>bd4598ccf115250e6c6b19c770bdd97ba5532fe2</id>
  <committed-date>2008-09-18T14:15:07-07:00</committed-date>
  <authored-date>2008-09-18T14:15:07-07:00</authored-date>
  <message>released as 0.6.5

git-svn-id: https://camping-picnic.googlecode.com/svn/trunk@82 c3e707da-6440-0410-ae22-65d24d045266</message>
  <tree>dafc8940f9132c2c4be14c7ce6b421a42f463b78</tree>
  <committer>
    <name>zuk</name>
    <email>matt@zukowski.ca</email>
  </committer>
</commit>
