<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -11,16 +11,51 @@ should also point you in the right direction.
 * Fast because it uses libxml-ruby under the hood
 * Automatic conversion of xml to defined objects
 
-== SYNOPSIS:
-
-See examples directory in the gem to get a feel for how it works.
+== EXAMPLES:
+
+Here is a simple example that maps Twitter statuses and users.
+
+  class User
+    include HappyMapper
+
+    element :id, Integer
+    element :name, String
+    element :screen_name, String
+    element :location, String
+    element :description, String
+    element :profile_image_url, String
+    element :url, String
+    element :protected, Boolean
+    element :followers_count, Integer
+  end
+
+  class Status
+    include HappyMapper
+
+    element :id, Integer
+    element :text, String
+    element :created_at, Time
+    element :source, String
+    element :truncated, Boolean
+    element :in_reply_to_status_id, Integer
+    element :in_reply_to_user_id, Integer
+    element :favorited, Boolean
+    has_one :user, User
+  end
+
+See examples directory in the gem for more examples.
+
+http://github.com/jnunemaker/happymapper/tree/master/examples/
 
 == INSTALL:
 
-* add github to your sources if you haven't gem sources -a http://gems.github.com
-* sudo gem install jnunemaker-happymapper
+* sudo gem install jnunemaker-happymapper -s http://gems.github.com
 * sudo gem install happymapper (when rubyforge approves and i release there)
 
 == TICKETS:
 
-http://github.com/jnunemaker/happymapper/issues/
\ No newline at end of file
+http://github.com/jnunemaker/happymapper/issues/
+
+== DOCS:
+
+http://rdoc.info/projects/jnunemaker/happymapper
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>15b604bca0f67643b0ea291cf96299aa896bd25c</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/happymapper/commit/33400f0df18ca41c51f21811dd5a306df6365ffa</url>
  <id>33400f0df18ca41c51f21811dd5a306df6365ffa</id>
  <committed-date>2009-04-30T04:57:28-07:00</committed-date>
  <authored-date>2009-04-30T04:57:28-07:00</authored-date>
  <message>Updated readme with docs info and some code samples.</message>
  <tree>ff5caae87d9f2309464670214b387b8221256bfb</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
