<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,13 +1,51 @@
 ResourceHelper
 ==============
 
-Introduction goes here.
+Helpers for using ActiveResource
 
+In this gem/plugin and documentation, I refer to the notion of client/server or front/back end.  Regardless of your architecture, 
+whatever is using a model as an ActiveRecord is the server or backend, and whatever is using it as an ActiveResource is
+the client or frontend.
 
 Example
 =======
 
-Example goes here.
+Backend stuff
+----------------------------
+# controller will redir to a callback tag if present, otherwise render whatever
+  callback and render :xml =&gt; @foo.to_xml
+# basic actions necessary for well-behaved resource server
+  -- XML index view on every controller
+  index
+  -- return a new, blank instance in XML
+  new
+  -- support method for using ActiveResource::count
+  count
+  
+  
+Frontend stuff
+----------------------------
+# ActiveResource Foo
+  Foo.count # -&gt; 2
+  
+# ActiveResource Foo
+  Foo.generate -&gt; a new Foo instance
+  
+# generates a tag for callback, for forms
+  %= index_callback_tag(Foo)
+  when used with callback on the backend, forms will &quot;come back&quot; to the frontend
+  
+# generates a blank associated ActiveResource instead of raising an error on a nil association
+# ActiveResource::method_missing_with_recover_nil_association
+  before: @foo.bar -&gt; raises error, frontend has no idea what a &quot;bar&quot; is if none is provided
+  after: @foo.bar  -&gt; even if no bar is associated, will return a blank instance
 
+# useful URL generators for ActiveResource
+ Foo.plural_url     -&gt; http://example.com/foos.xml
+ Foo.singular_url(1)   -&gt; http://example.com/foo/1
 
-Copyright (c) 2008 [name of plugin creator], released under the MIT license
+
+
+Copyright (c) 2008 [Bryan Taylor], released under the MIT license
+
+see more at http://rubyisbeautiful.com</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e587c246fb6e2a3ba1d1d6ee701d2734446018f3</id>
    </parent>
  </parents>
  <author>
    <name>Bryan Taylor</name>
    <email>bryan@rubyisbeautiful.com</email>
  </author>
  <url>http://github.com/rubyisbeautiful/resource_helper/commit/6166ab7087114a497210edd2f0ef7e29fc663098</url>
  <id>6166ab7087114a497210edd2f0ef7e29fc663098</id>
  <committed-date>2008-08-23T14:14:19-07:00</committed-date>
  <authored-date>2008-08-23T14:14:19-07:00</authored-date>
  <message>update to README with short examples</message>
  <tree>5ad213fbcfd7690eae34cfe14b9513fba6cd6be3</tree>
  <committer>
    <name>Bryan Taylor</name>
    <email>bryan@rubyisbeautiful.com</email>
  </committer>
</commit>
