<?xml version="1.0" encoding="UTF-8"?>
<commits type="array">
  <commit>
    <parents type="array">
      <parent>
        <id>b15d5cbda2398c562311f3ed409bc7b0cc3a88a8</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/48d9aa3a1452f529c597fdf527d8d8bdb53bba47</url>
    <id>48d9aa3a1452f529c597fdf527d8d8bdb53bba47</id>
    <committed-date>2008-04-30T10:16:29-07:00</committed-date>
    <authored-date>2008-04-30T10:16:29-07:00</authored-date>
    <message>Add descriptions to all rake tasks, and a top level rake release task, plus some refactoring</message>
    <tree>e9eb4183d1f566614ebcc3af80b973c533de3e87</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>b3c9e3e77cb31f6a6debdd7b0e81be5de2c56934</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/b15d5cbda2398c562311f3ed409bc7b0cc3a88a8</url>
    <id>b15d5cbda2398c562311f3ed409bc7b0cc3a88a8</id>
    <committed-date>2008-04-30T10:06:31-07:00</committed-date>
    <authored-date>2008-04-30T10:06:31-07:00</authored-date>
    <message>Bump version to 1.5.1</message>
    <tree>9b840ab42cfc44c5593a3d0737ff3e094c44a8c3</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>9d3f4cb4681fe186180a64a9e4483db7fe183220</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/b3c9e3e77cb31f6a6debdd7b0e81be5de2c56934</url>
    <id>b3c9e3e77cb31f6a6debdd7b0e81be5de2c56934</id>
    <committed-date>2008-04-29T19:43:17-07:00</committed-date>
    <authored-date>2008-04-29T19:43:17-07:00</authored-date>
    <message>Have Dataset#graph give a nil value instead of a hash with all nil values if no matching rows exist in the graphed table

Before:

  # If the first artist doesn't have any albums
  DB[:artists].graph(:albums, :artist_id=&gt;:id).first
  =&gt; {:artists=&gt;{:id=&gt;artists.id, :name=&gt;artists.name}, :albums=&gt;{:id=&gt;nil, :name=&gt;nil, :artist_id=&gt;nil}}

After:

  # If the first artist doesn't have any albums
  DB[:artists].graph(:albums, :artist_id=&gt;:id).first
  =&gt; {:artists=&gt;{:id=&gt;artists.id, :name=&gt;artists.name}, :albums=&gt;nil}

This also fixes eager_graph, so that you don't end up with a single empty associated object in
*_to_many associations (that is shared by all objects without an associated record in the database).

Before:

  # If the first two artists don't have any albums
  Artist.eager_graph(:albums).all.first.albums
  =&gt; [#&lt;Album @values={:id=&gt;nil, :name=&gt;nil, :artist_id=&gt;nil}&gt;]
  Artist.eager_graph(:albums).all[0].albums.first.object_id == \
   Artist.eager_graph(:albums).all[1].albums.first.object_id
  =&gt; true

After:

  # If the first two artists don't have any albums
  Artist.eager_graph(:albums).all[0].albums
  =&gt; []
  Artist.eager_graph(:albums).all[1].albums
  =&gt; []

This also fixes eager_graph for many_to_one associations, in that if the associated record doesn't
exist, an empty (and again, shared) item is not used.

Before:

  # If the first two albums don't have an artist
  Album.eager_graph(:artists).all.first.artist
  =&gt; [#&lt;Artist @values={:id=&gt;nil, :name=&gt;nil}&gt;]
  Album.eager_graph(:artists).all[0].artist.object_id == \
   Album.eager_graph(:artists).all[1].artist.object_id
  =&gt; true

After:

  # If the first two albums don't have an artist
  Album.eager_graph(:artists).all[0].artist
  =&gt; nil
  Album.eager_graph(:artists).all[1].artist
  =&gt; nil</message>
    <tree>c4cf8404aa6b3b300039daa8ce6f6c27aa4422b1</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>2b572b9afc5e463b0c867e2655ec2e18e1b2f68b</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/9d3f4cb4681fe186180a64a9e4483db7fe183220</url>
    <id>9d3f4cb4681fe186180a64a9e4483db7fe183220</id>
    <committed-date>2008-04-29T09:45:34-07:00</committed-date>
    <authored-date>2008-04-29T09:45:34-07:00</authored-date>
    <message>Bump versions to 1.5.0</message>
    <tree>a1a21067854d16bb67be48477fbf540e542abc59</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ddccc5f02ed32e3af65274efea06f763e5436e7c</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/2b572b9afc5e463b0c867e2655ec2e18e1b2f68b</url>
    <id>2b572b9afc5e463b0c867e2655ec2e18e1b2f68b</id>
    <committed-date>2008-04-29T08:11:30-07:00</committed-date>
    <authored-date>2008-04-29T08:11:30-07:00</authored-date>
    <message>In the RDoc, give an example of .eager being used with filters, and discuss eager loading on limited datasets</message>
    <tree>1964c33bc57da0c8fcf713cbe5c09d55502188c4</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>fea8f18744b70367f67ab04d3b343695a75b5a84</id>
      </parent>
      <parent>
        <id>ec912831eeaac374c82da92dce86dc8a68e2bb2d</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/ddccc5f02ed32e3af65274efea06f763e5436e7c</url>
    <id>ddccc5f02ed32e3af65274efea06f763e5436e7c</id>
    <committed-date>2008-04-28T15:23:52-07:00</committed-date>
    <authored-date>2008-04-28T15:23:52-07:00</authored-date>
    <message>Merge branch 'master' of git://github.com/jeremyevans/sequel</message>
    <tree>26e3e8becc7dd3432190386b78982dd650c52682</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>c923c5b9b372e811e0f61a8774d8b0b5aa42a18b</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/fea8f18744b70367f67ab04d3b343695a75b5a84</url>
    <id>fea8f18744b70367f67ab04d3b343695a75b5a84</id>
    <committed-date>2008-04-28T15:22:57-07:00</committed-date>
    <authored-date>2008-04-28T15:22:57-07:00</authored-date>
    <message>Revert &quot;add support for using memcached gem with sequel for caching&quot;

This reverts commit 2668ab0618bdf72f28c3d0cbb116fce46a50f50f.

Conflicts:

	sequel/CHANGELOG</message>
    <tree>f4889aca1fb26e95e7d892b9785ab5f64715b19b</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>504bf23d4589387a54cf99e8b2f3dd10b87b5dd3</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/c923c5b9b372e811e0f61a8774d8b0b5aa42a18b</url>
    <id>c923c5b9b372e811e0f61a8774d8b0b5aa42a18b</id>
    <committed-date>2008-04-28T15:21:41-07:00</committed-date>
    <authored-date>2008-04-28T15:21:41-07:00</authored-date>
    <message>Revert &quot;rescue errors when expiring cached items&quot;

This reverts commit 47a7044a9a8cc1e1bdb2140fc236f0583d17bace.</message>
    <tree>26f68a4ef85d06f0899527561a901141b431f049</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>36fb0f1f0e84eaf568bb80492345948ac38e7987</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/504bf23d4589387a54cf99e8b2f3dd10b87b5dd3</url>
    <id>504bf23d4589387a54cf99e8b2f3dd10b87b5dd3</id>
    <committed-date>2008-04-28T15:21:34-07:00</committed-date>
    <authored-date>2008-04-28T15:21:34-07:00</authored-date>
    <message>Revert &quot;cached Memcached::NotFound specifically instead of a rescue nil&quot;

This reverts commit ec7987426b8c8838eb0c8716256a01561a4a4033.</message>
    <tree>105df62ee7384c05d38ed1d671a3b14d1e2f33d1</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>1e27a8f93fc66e0d84d2429efa86482d12c416f5</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/36fb0f1f0e84eaf568bb80492345948ac38e7987</url>
    <id>36fb0f1f0e84eaf568bb80492345948ac38e7987</id>
    <committed-date>2008-04-28T15:21:21-07:00</committed-date>
    <authored-date>2008-04-28T15:21:21-07:00</authored-date>
    <message>Revert &quot;clean up Memcached error handling&quot;

This reverts commit c539bd1d07b517973f33de51c90e7dbc22108fd8.</message>
    <tree>772c8bfd8a1442ddbfd6f7e065083d90b34a115a</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>7a91d2952332e50e1226c07681f3895fabc32c4b</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/ec912831eeaac374c82da92dce86dc8a68e2bb2d</url>
    <id>ec912831eeaac374c82da92dce86dc8a68e2bb2d</id>
    <committed-date>2008-04-28T14:22:15-07:00</committed-date>
    <authored-date>2008-04-28T14:22:15-07:00</authored-date>
    <message>In Model#set_with_params assume symbol keys are valid columns if the columns for the model have not been set</message>
    <tree>a0b990eeb9f2adfc6b2c78a60c26ee3c008fcfb7</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>1e27a8f93fc66e0d84d2429efa86482d12c416f5</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/7a91d2952332e50e1226c07681f3895fabc32c4b</url>
    <id>7a91d2952332e50e1226c07681f3895fabc32c4b</id>
    <committed-date>2008-04-28T13:50:02-07:00</committed-date>
    <authored-date>2008-04-28T13:50:02-07:00</authored-date>
    <message>Reload the columns in Model.create_table, to make sure the column accessors are created</message>
    <tree>620dd99c39a8214bf38b4dfdeeff104de1c29ecb</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>475967e139b61e6372877e52bc3fb6f110a6151e</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/1e27a8f93fc66e0d84d2429efa86482d12c416f5</url>
    <id>1e27a8f93fc66e0d84d2429efa86482d12c416f5</id>
    <committed-date>2008-04-28T10:02:12-07:00</committed-date>
    <authored-date>2008-04-28T10:02:12-07:00</authored-date>
    <message>Update sequel/CHANGELOG for Inviz's merb compatibility fix</message>
    <tree>11f74539623bf03dd3539c12cb5e175d16b82a0b</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>830490e39753daeafc29518b0a77ffb6c34c41e4</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/475967e139b61e6372877e52bc3fb6f110a6151e</url>
    <id>475967e139b61e6372877e52bc3fb6f110a6151e</id>
    <committed-date>2008-04-28T09:55:38-07:00</committed-date>
    <authored-date>2008-04-28T09:55:38-07:00</authored-date>
    <message>Fix validates_uniqueness_of to make it work in all cases</message>
    <tree>6f5337186dc5e265e7214d6803aa2cc9ec0f0c30</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>2d57d6b24df3f1c97d6876f9cfd77f939aedfc91</id>
      </parent>
      <parent>
        <id>b5ccf6e1529338575f6e99c6620c7cc2a342e616</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/830490e39753daeafc29518b0a77ffb6c34c41e4</url>
    <id>830490e39753daeafc29518b0a77ffb6c34c41e4</id>
    <committed-date>2008-04-28T09:14:45-07:00</committed-date>
    <authored-date>2008-04-28T09:14:45-07:00</authored-date>
    <message>Merge master changes into Inviz branch

Merge branch 'master' into myinviz1</message>
    <tree>89f7bb44fae49a8a9a510ccc8c9f461199069c06</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>1fede597b68d5d4c7d51ca49c31d99998b5c646d</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/b5ccf6e1529338575f6e99c6620c7cc2a342e616</url>
    <id>b5ccf6e1529338575f6e99c6620c7cc2a342e616</id>
    <committed-date>2008-04-28T09:05:10-07:00</committed-date>
    <authored-date>2008-04-28T09:05:10-07:00</authored-date>
    <message>Set a timeout in the Sqlite adapter, default to 5 seconds (Fixes #218)</message>
    <tree>2123bdf34d919ebcb9dafb447b376df75f257040</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>c539bd1d07b517973f33de51c90e7dbc22108fd8</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/1fede597b68d5d4c7d51ca49c31d99998b5c646d</url>
    <id>1fede597b68d5d4c7d51ca49c31d99998b5c646d</id>
    <committed-date>2008-04-28T08:55:45-07:00</committed-date>
    <authored-date>2008-04-28T08:55:45-07:00</authored-date>
    <message>Fix some Ruby 1.9 compatibility issues pointed out by Victor Shepelev</message>
    <tree>1558459bf1926339b783342ba385d310c5fa8b4c</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>2668ab0618bdf72f28c3d0cbb116fce46a50f50f</id>
      </parent>
    </parents>
    <author>
      <name>Yaroslaff Fedin</name>
      <email>me@inviz.ru</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/2d57d6b24df3f1c97d6876f9cfd77f939aedfc91</url>
    <id>2d57d6b24df3f1c97d6876f9cfd77f939aedfc91</id>
    <committed-date>2008-04-25T05:31:12-07:00</committed-date>
    <authored-date>2008-04-25T05:31:12-07:00</authored-date>
    <message>Few tweaks to validations.rb</message>
    <tree>009062ea42d13df4eb79f294493b305ebd643dba</tree>
    <committer>
      <name>Yaroslaff Fedin</name>
      <email>me@inviz.ru</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>40acc32c1e4c0efa86b2519479d1a4949b7490a5</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/c539bd1d07b517973f33de51c90e7dbc22108fd8</url>
    <id>c539bd1d07b517973f33de51c90e7dbc22108fd8</id>
    <committed-date>2008-04-24T15:10:43-07:00</committed-date>
    <authored-date>2008-04-24T15:10:43-07:00</authored-date>
    <message>clean up Memcached error handling</message>
    <tree>04736de233b5fdc12661d93c107114c882a37c0e</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ec7987426b8c8838eb0c8716256a01561a4a4033</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/40acc32c1e4c0efa86b2519479d1a4949b7490a5</url>
    <id>40acc32c1e4c0efa86b2519479d1a4949b7490a5</id>
    <committed-date>2008-04-24T14:48:50-07:00</committed-date>
    <authored-date>2008-04-24T14:48:50-07:00</authored-date>
    <message>alias Model#dataset= to Model#set_dataset</message>
    <tree>7653ee24d1aebccaf2a8eb8c5fceb38f5b51c2ce</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>47a7044a9a8cc1e1bdb2140fc236f0583d17bace</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/ec7987426b8c8838eb0c8716256a01561a4a4033</url>
    <id>ec7987426b8c8838eb0c8716256a01561a4a4033</id>
    <committed-date>2008-04-24T14:44:20-07:00</committed-date>
    <authored-date>2008-04-24T14:44:20-07:00</authored-date>
    <message>cached Memcached::NotFound specifically instead of a rescue nil</message>
    <tree>7c8fb020154bd70d15094d9164322642d07f4961</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>2668ab0618bdf72f28c3d0cbb116fce46a50f50f</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/47a7044a9a8cc1e1bdb2140fc236f0583d17bace</url>
    <id>47a7044a9a8cc1e1bdb2140fc236f0583d17bace</id>
    <committed-date>2008-04-24T14:37:32-07:00</committed-date>
    <authored-date>2008-04-24T14:37:32-07:00</authored-date>
    <message>rescue errors when expiring cached items</message>
    <tree>f7ef6076836e80e5bef94767060c69b1e95e164e</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>dc546ac5bbc0fc0b45f86451decc11f9394a9dc3</id>
      </parent>
    </parents>
    <author>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/2668ab0618bdf72f28c3d0cbb116fce46a50f50f</url>
    <id>2668ab0618bdf72f28c3d0cbb116fce46a50f50f</id>
    <committed-date>2008-04-24T13:54:28-07:00</committed-date>
    <authored-date>2008-04-24T13:54:28-07:00</authored-date>
    <message>add support for using memcached gem with sequel for caching</message>
    <tree>d4b82bd573a0ba62e9b827a2c6baa108e33e8035</tree>
    <committer>
      <name>Aman Gupta</name>
      <email>aman@tmm1.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>c14fc0031ff932538752332bfa9117cb1ce3aa7f</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/dc546ac5bbc0fc0b45f86451decc11f9394a9dc3</url>
    <id>dc546ac5bbc0fc0b45f86451decc11f9394a9dc3</id>
    <committed-date>2008-04-23T19:05:46-07:00</committed-date>
    <authored-date>2008-04-23T19:05:46-07:00</authored-date>
    <message>Fix examples in the graph/set_graph_aliases RDoc</message>
    <tree>7b787ef7e82b735046cf8fe5515a1ca9d91dc86b</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>82d2593b535bf0e43f6208f7ee0c86b6dd2c8984</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/c14fc0031ff932538752332bfa9117cb1ce3aa7f</url>
    <id>c14fc0031ff932538752332bfa9117cb1ce3aa7f</id>
    <committed-date>2008-04-23T15:36:17-07:00</committed-date>
    <authored-date>2008-04-23T15:36:17-07:00</authored-date>
    <message>More RDoc fixes, and make most PrettyTable class methods private</message>
    <tree>aa6f5c1b450c0d66d0814a06ee4b97c09c924ebd</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>63665a9bb4bd14dccaed7f9a292765acb89a029a</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/82d2593b535bf0e43f6208f7ee0c86b6dd2c8984</url>
    <id>82d2593b535bf0e43f6208f7ee0c86b6dd2c8984</id>
    <committed-date>2008-04-23T13:57:36-07:00</committed-date>
    <authored-date>2008-04-23T13:57:36-07:00</authored-date>
    <message>Some additions to sequel/README from the Google Code Wiki</message>
    <tree>b4284a5bb68aaacafeeb0f197831fef92f900a39</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>3ecd55b296334c0315e0a2f304633ac86f968fc3</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/63665a9bb4bd14dccaed7f9a292765acb89a029a</url>
    <id>63665a9bb4bd14dccaed7f9a292765acb89a029a</id>
    <committed-date>2008-04-23T13:50:24-07:00</committed-date>
    <authored-date>2008-04-23T13:50:24-07:00</authored-date>
    <message>Refactor Rakefile rdoc tasks, and fix default task description</message>
    <tree>a9719550e2062fcb036d926561d2f6c8b0d1b0f7</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>a0181eb81369148f638d9f74366cca97e2cffa62</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/3ecd55b296334c0315e0a2f304633ac86f968fc3</url>
    <id>3ecd55b296334c0315e0a2f304633ac86f968fc3</id>
    <committed-date>2008-04-23T13:48:50-07:00</committed-date>
    <authored-date>2008-04-23T13:48:50-07:00</authored-date>
    <message>Minor RDoc issue in sequel/README</message>
    <tree>eaef3863698cdf4c59d583d8a43ca7ef0a87fd60</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6dae166efb751f202680d32d7adefc83f04616ad</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/a0181eb81369148f638d9f74366cca97e2cffa62</url>
    <id>a0181eb81369148f638d9f74366cca97e2cffa62</id>
    <committed-date>2008-04-23T13:36:44-07:00</committed-date>
    <authored-date>2008-04-23T13:36:44-07:00</authored-date>
    <message>Various doc fixes

Move the main Sequel::Model RDoc from sequel_model.rb to sequel/README
Change documentation examples that use Numeric time extensions to not require them
Add an example of graphing to the sequel_core/README
Add examples of eager loading to the sequel/README</message>
    <tree>8b9e5966dc38a1eb4c16fcc528db9087e685d16d</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>98169b7b0f8dc8a4676c67c8f66d6278f466a4a9</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </author>
    <url>http://github.com/jeremyevans/sequel/commit/6dae166efb751f202680d32d7adefc83f04616ad</url>
    <id>6dae166efb751f202680d32d7adefc83f04616ad</id>
    <committed-date>2008-04-23T12:31:35-07:00</committed-date>
    <authored-date>2008-04-23T12:31:35-07:00</authored-date>
    <message>Document that calling Sequel::ODBC::Database#execute manually requires you to manually drop the returned object (fixes #217)</message>
    <tree>38eb0afb29fd5776976c80cd69487a1990bb62c8</tree>
    <committer>
      <name>Jeremy Evans</name>
      <email>code@jeremyevans.net</email>
    </committer>
  </commit>
</commits>
