<?xml version="1.0" encoding="UTF-8"?>
<commits type="array">
  <commit>
    <parents type="array">
      <parent>
        <id>610f0fc2173a45f94e4d5d498501045615ac7ae0</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/2fc9f3f7f987a1ddb90bcfa797fdc59bbaa78b16</url>
    <id>2fc9f3f7f987a1ddb90bcfa797fdc59bbaa78b16</id>
    <committed-date>2009-08-19T20:42:54-07:00</committed-date>
    <authored-date>2009-08-19T20:30:06-07:00</authored-date>
    <message>Move adapters to webrat/adapters, and Rails and Merb integration code into webrat/integrations</message>
    <tree>4a2866d99d42eca67d2c8f9a2f5da1d6bda3e92f</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>561525dd81f1e7632d31d6f7e1df36823ec28c49</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/b0b88a0d82f698c5d7c60ab14480687d02bc5581</url>
    <id>b0b88a0d82f698c5d7c60ab14480687d02bc5581</id>
    <committed-date>2009-08-12T17:40:44-07:00</committed-date>
    <authored-date>2009-08-12T17:40:44-07:00</authored-date>
    <message>Rename SinatraSession to SinatraAdapter</message>
    <tree>01bcab4b01515546cc826970230374b8e0a168c2</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>3670b19f66e0518aead2854808e2f40a3925fc6b</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/561525dd81f1e7632d31d6f7e1df36823ec28c49</url>
    <id>561525dd81f1e7632d31d6f7e1df36823ec28c49</id>
    <committed-date>2009-08-12T17:39:35-07:00</committed-date>
    <authored-date>2009-08-12T17:39:35-07:00</authored-date>
    <message>Rename RackSession to RackAdapter</message>
    <tree>11ab573daa607a6322ea718b543cf994b6b59d9e</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f2882ef8b2857c5d9f166184cb788be3c90186cc</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/11996a15dce018b5c56411af789ad15121cebd6b</url>
    <id>11996a15dce018b5c56411af789ad15121cebd6b</id>
    <committed-date>2009-06-25T18:13:54-07:00</committed-date>
    <authored-date>2009-06-25T18:13:54-07:00</authored-date>
    <message>Updating to leverage latest rack-test</message>
    <tree>2ad9de8fc85cb3f79cfc88f1bfa8256ed5f5150b</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>051dfe188ce652cbc2693d61705c2332ac9f1eb7</id>
      </parent>
    </parents>
    <author>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/a5a91b32e944c79ed9c6558a9026953e1db186e4</url>
    <id>a5a91b32e944c79ed9c6558a9026953e1db186e4</id>
    <committed-date>2009-06-24T15:38:39-07:00</committed-date>
    <authored-date>2009-06-24T15:21:24-07:00</authored-date>
    <message>Deprecate the :sinatra mode

* I took the conservative approach here: the sinatra code could
  be removed but that'd cause a regression. (using Sinatra::Application
  when `app` is not defined)

* I left the sinatra tests for now; they should be removed
  once we're fully confident with rack session ones.</message>
    <tree>6e09d11ed8ecad06993493ccb45eef014b03faa0</tree>
    <committer>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>cbc447223cebc126e8f508bc90159955abf1147f</id>
      </parent>
    </parents>
    <author>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/f2b3b9891b9a0605fa2d6197f9a960f9c7dbd361</url>
    <id>f2b3b9891b9a0605fa2d6197f9a960f9c7dbd361</id>
    <committed-date>2009-06-24T15:07:30-07:00</committed-date>
    <authored-date>2009-06-12T12:30:35-07:00</authored-date>
    <message>Refactor Webrat::Session

* Webrat::Session.new now take a session adapter class as it's argument and
  delegates methods such as #response_body and #response_code to an instance
  of it.

* Some of these methods will go away in the future. However, *a lot*
  of specs depends on them so I've left them for now. The plan is to
  strip down the session adapter API to these three methods:

    * request
    * response_code
    * response_body

* I had to mark a spec as pending: spec/private/rails/rails_session_spec.rb</message>
    <tree>8a137ec58e43666c793429e8f070dbb4eefde38a</tree>
    <committer>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>5eeceff9e8c87435e3218133ad41382cfbb0ca37</id>
      </parent>
    </parents>
    <author>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/3e7886ecab315c6a254025519f1ccbcdc30ee52e</url>
    <id>3e7886ecab315c6a254025519f1ccbcdc30ee52e</id>
    <committed-date>2009-06-24T06:13:16-07:00</committed-date>
    <authored-date>2009-06-12T08:03:49-07:00</authored-date>
    <message>Get rid of RackSession

Looks like dead code</message>
    <tree>b94e2d2972daec678608e752fa560b4cec32acfb</tree>
    <committer>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>4e07f5b654018965c83425cd1fec14cdb8a87220</id>
      </parent>
    </parents>
    <author>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/90baf3311c582390522c30d434ac3afe7822cb69</url>
    <id>90baf3311c582390522c30d434ac3afe7822cb69</id>
    <committed-date>2009-03-08T15:41:34-07:00</committed-date>
    <authored-date>2009-03-08T15:30:17-07:00</authored-date>
    <message>Sinatra now provides sensible options for testing

In the lastest release, 0.9.1:

* Set sensible defaults on Default for test env [1]
  http://github.com/sinatra/sinatra/commit/5a33a9586f6d3aa959ee7b3f4f7f0831476dcaa5

* Set :environment to :test in TestHarness
  http://github.com/sinatra/sinatra/commit/9af37724e0fa5413c9a089024526ace6f82b7ab9

* Set :environment to :test when Sinatra::Test is included
  http://github.com/sinatra/sinatra/commit/93b19a34927a21880523d3301b51d1dc2aad6538

[1] Only Sinatra::Default provides special options for testing. If you subclass
    Sinatra::Base, you'll have to set them yourself.

foo</message>
    <tree>dbd6e6c504d94d4d2346e7e6733dff39a8708874</tree>
    <committer>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>7d7c32256dda0054256bfa772b3dde3922841615</id>
      </parent>
    </parents>
    <author>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/4e07f5b654018965c83425cd1fec14cdb8a87220</url>
    <id>4e07f5b654018965c83425cd1fec14cdb8a87220</id>
    <committed-date>2009-02-27T18:30:26-08:00</committed-date>
    <authored-date>2009-02-21T22:04:30-08:00</authored-date>
    <message>Fix following of absolute redirect URL in Sinatra

What's going on when the app redirects to an absolute URL?

* Sinatra relies on Rack::MockSession which sets SERVER_NAME to
  &quot;example.org&quot; [1] on request it makes. However, Webrat expects
  it to be &quot;www.example.com&quot;

* In MyClassyApp, the redirect URL is made out of Rack::Request#url [2]
  which uses  SERVER_NAME, which is set to &quot;example.org&quot; by Rack::MockSession.
  As a result, Webrat see it as an external redirect and don't follow it.

NOTE:

* SERVER_NAME is stricly equivalent to HTTP_HOST [3]
* This could have been fixed in Webrat::Session too. I'am not sure
  that it won't affect other frameworks so I left it intact.

      def request_page(url, http_method, data) #:nodoc:
         h = headers
         h['HTTP_REFERER'] = @current_url if @current_url
  +      h['HTTP_HOST']    = 'www.example.com'

[1] http://github.com/rack/rack/blob/5c00dd698edb953b4bee432fa12a20ba69a067c1/lib/rack/mock.rb#L79
[2] http://github.com/rack/rack/blob/5c00dd698edb953b4bee432fa12a20ba69a067c1/lib/rack/request.rb#L201
[3] http://github.com/rack/rack/blob/5c00dd698edb953b4bee432fa12a20ba69a067c1/lib/rack/request.rb#L72</message>
    <tree>0d57b761e90b9272e8fbbb997714d37257981b6e</tree>
    <committer>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>00433bafe504296b96d56197200cebe875ef718e</id>
      </parent>
    </parents>
    <author>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/7d7c32256dda0054256bfa772b3dde3922841615</url>
    <id>7d7c32256dda0054256bfa772b3dde3922841615</id>
    <committed-date>2009-02-27T18:30:25-08:00</committed-date>
    <authored-date>2009-02-21T16:07:15-08:00</authored-date>
    <message>Support for &quot;modular&quot; Sinatra app style

Since Sinatra 0.9, apps can be ancapsulated in a class (&quot;modular&quot; style)
or be on the top level, just like before (&quot;classic&quot; style)

* http://wiki.github.com/brynary/webrat/sinatra
* http://www.sinatrarb.com/extensions.html</message>
    <tree>602a1424e5fdd525f6668911e025bc17fed14425</tree>
    <committer>
      <name>Simon Rozet</name>
      <email>simon@rozet.name</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>238bfb469ecb687de88ac58fd173565d0a3fbbd6</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/33509ef57550c8b1fe05429d60d4502d849f2f34</url>
    <id>33509ef57550c8b1fe05429d60d4502d849f2f34</id>
    <committed-date>2009-01-25T16:50:58-08:00</committed-date>
    <authored-date>2009-01-25T16:50:58-08:00</authored-date>
    <message>Remove stray require of ruby-debug</message>
    <tree>76b29a24e01f6d67182e9b2f14b649b2d77b58a5</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>14d114ce1dbbf7b70c71ace7d328b18177bbea82</id>
      </parent>
    </parents>
    <author>
      <name>ichverstehe</name>
      <email>ichverstehe@gmail.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/1bfe7634f8bb93472f4f53715d43916a8ff1569f</url>
    <id>1bfe7634f8bb93472f4f53715d43916a8ff1569f</id>
    <committed-date>2009-01-19T14:51:01-08:00</committed-date>
    <authored-date>2009-01-16T09:51:01-08:00</authored-date>
    <message>sinatra 0.9 support</message>
    <tree>227bd657371ca6f6b5407484de9e2d32b2b46c02</tree>
    <committer>
      <name>ichverstehe</name>
      <email>ichverstehe@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>34ea3e64b896424b5aa1195610d5e61e5be466cf</id>
      </parent>
    </parents>
    <author>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/4565a3cea641b79a77661b4bda6d3b21f7644886</url>
    <id>4565a3cea641b79a77661b4bda6d3b21f7644886</id>
    <committed-date>2009-01-04T19:36:21-08:00</committed-date>
    <authored-date>2009-01-01T06:42:05-08:00</authored-date>
    <message>Unescape the values passed to the sinatra test helpers</message>
    <tree>72179368207c4ffba6b6f28cb7d8efc4b25eeb50</tree>
    <committer>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>c3120833b0a4fab942e1430088e513783304b2a0</id>
      </parent>
    </parents>
    <author>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/34ea3e64b896424b5aa1195610d5e61e5be466cf</url>
    <id>34ea3e64b896424b5aa1195610d5e61e5be466cf</id>
    <committed-date>2009-01-04T19:34:47-08:00</committed-date>
    <authored-date>2009-01-04T19:34:47-08:00</authored-date>
    <message>Sinatra integration tests for following redirects</message>
    <tree>452de5ce8470208a9147859c6f3d9f1d535f8568</tree>
    <committer>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>e19b1cc323e8df657a357bfeefe3f68745f80938</id>
      </parent>
      <parent>
        <id>499dcefefe929e58a3adf802410dc5bb94a70862</id>
      </parent>
    </parents>
    <author>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/c3120833b0a4fab942e1430088e513783304b2a0</url>
    <id>c3120833b0a4fab942e1430088e513783304b2a0</id>
    <committed-date>2009-01-04T18:57:25-08:00</committed-date>
    <authored-date>2009-01-04T18:57:25-08:00</authored-date>
    <message>Merge branch 'foca/master'</message>
    <tree>1639304da18df87958b4eed6a2210709da17e3df</tree>
    <committer>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>a56973854276e18545da4d89ff99ee73fabe8d9d</id>
      </parent>
    </parents>
    <author>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/ce364d16638c6d6906b5c00ffdcb0374caed7f5b</url>
    <id>ce364d16638c6d6906b5c00ffdcb0374caed7f5b</id>
    <committed-date>2008-12-29T18:19:13-08:00</committed-date>
    <authored-date>2008-12-29T18:19:13-08:00</authored-date>
    <message>Refactor redirect support out of RailsSession &amp; SinatraSession and into Session#request_page</message>
    <tree>9bc450cf3a87ab9e0bcae5a82e1c3b65f3bd71fd</tree>
    <committer>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6704d487bcba624e62096a45e875bcbf44c60fbb</id>
      </parent>
    </parents>
    <author>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/422c6aea89310899bceda5d8797d311acafafa84</url>
    <id>422c6aea89310899bceda5d8797d311acafafa84</id>
    <committed-date>2008-12-28T21:37:41-08:00</committed-date>
    <authored-date>2008-12-28T21:37:37-08:00</authored-date>
    <message>Use request_page to handle sinatra redirects

This should make current_url and keeping the referrer work as expected</message>
    <tree>0f548a9176392bf8b60290e5651de3169328fe0e</tree>
    <committer>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6d108393be2b60b03ec5e5abb1bba3f97d79b885</id>
      </parent>
    </parents>
    <author>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/6704d487bcba624e62096a45e875bcbf44c60fbb</url>
    <id>6704d487bcba624e62096a45e875bcbf44c60fbb</id>
    <committed-date>2008-12-28T21:37:12-08:00</committed-date>
    <authored-date>2008-12-28T21:37:12-08:00</authored-date>
    <message>Disable sinatra's app run and reload</message>
    <tree>3b44d5d9da4d80fe498ae5615196b391d10ebefe</tree>
    <committer>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>2ead102f54f32a70b335e4303bd916791d73106f</id>
      </parent>
    </parents>
    <author>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/6d108393be2b60b03ec5e5abb1bba3f97d79b885</url>
    <id>6d108393be2b60b03ec5e5abb1bba3f97d79b885</id>
    <committed-date>2008-12-28T19:40:14-08:00</committed-date>
    <authored-date>2008-12-28T19:40:14-08:00</authored-date>
    <message>Allow accessing the request and response from SinatraSession</message>
    <tree>23c46ae91df224744a012ff0e35abab2cfd1074f</tree>
    <committer>
      <name>Nicolas Sanguinetti</name>
      <email>contacto@nicolassanguinetti.info</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f409ec3ecb04593c400ac3217be9ef44ed25cdd6</id>
      </parent>
      <parent>
        <id>89e9ea91e9e83d844096a0a5861991e29b870dba</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/29274f9b4b49f98a6d69f43d1b3a309146912bc3</url>
    <id>29274f9b4b49f98a6d69f43d1b3a309146912bc3</id>
    <committed-date>2008-12-28T16:35:42-08:00</committed-date>
    <authored-date>2008-12-28T16:35:42-08:00</authored-date>
    <message>Merge commit 'joshknowles/master'

Conflicts:
	lib/webrat/rails.rb
	spec/webrat/rails/rails_session_spec.rb</message>
    <tree>b787b912e27d12a1e347478e6866e6091b7b86f0</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6d7fc04f71c170c889e6d758d5de9d98401f72dd</id>
      </parent>
    </parents>
    <author>
      <name>gaffo</name>
      <email>mike@uberu.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/22c7834512190c5991cd0ff9e27c750037be0405</url>
    <id>22c7834512190c5991cd0ff9e27c750037be0405</id>
    <committed-date>2008-12-25T20:07:10-08:00</committed-date>
    <authored-date>2008-12-25T20:04:41-08:00</authored-date>
    <message>Sets the Webrat mode with Configuration#mode= in the config block</message>
    <tree>473e024ebfb283d48fb42e3663fba2fcd4db6b2c</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>d0504d93446851128aaccd91de0cdc8630b6d83b</id>
      </parent>
    </parents>
    <author>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/89e9ea91e9e83d844096a0a5861991e29b870dba</url>
    <id>89e9ea91e9e83d844096a0a5861991e29b870dba</id>
    <committed-date>2008-12-25T15:28:54-08:00</committed-date>
    <authored-date>2008-12-25T15:28:54-08:00</authored-date>
    <message>Support forwarding headers when following redirects when using the SinatraSession</message>
    <tree>e6a638261cb5cf8c642df66f8def0b230315b70d</tree>
    <committer>
      <name>Josh Knowles</name>
      <email>joshknowles@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>a8e02a6b6e686cc4fd7b9c16b5fec88ae14179c9</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/adf68c2f8fc47053319199b90b922093efd69f0c</url>
    <id>adf68c2f8fc47053319199b90b922093efd69f0c</id>
    <committed-date>2008-11-22T20:49:12-08:00</committed-date>
    <authored-date>2008-11-22T20:49:12-08:00</authored-date>
    <message>Change Webrat Rails integration to use the Webrat::Methods module</message>
    <tree>b676e6dcd8eee71946cbde0d9b973da421337708</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6fb79dcb72018407fa575e9f8e0003700f3f8fc9</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/2d867451ca268c18e85657e85b1b762fecd73373</url>
    <id>2d867451ca268c18e85657e85b1b762fecd73373</id>
    <committed-date>2008-11-07T09:13:41-08:00</committed-date>
    <authored-date>2008-11-07T09:13:41-08:00</authored-date>
    <message>Cleaning up rdoc to only show public APIs</message>
    <tree>19a9d7c921d6639cc977f59fc4b06b5b7d00c387</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>828b7d4c2c10312139e7fb66fcf2ba2596042c0c</id>
      </parent>
    </parents>
    <author>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </author>
    <url>http://github.com/brynary/webrat/commit/ce9235f0fade659572aa60e04ffdff50ebf40f81</url>
    <id>ce9235f0fade659572aa60e04ffdff50ebf40f81</id>
    <committed-date>2008-11-05T15:01:05-08:00</committed-date>
    <authored-date>2008-11-05T15:01:05-08:00</authored-date>
    <message>Restructuring files</message>
    <tree>fadd1178bc9bba61d30963a545aa1dca63f3ede3</tree>
    <committer>
      <name>Bryan Helmkamp</name>
      <email>bryan@brynary.com</email>
    </committer>
  </commit>
</commits>
