<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,13 +1,15 @@
 Recursable
 ==========
 
-Introduction goes here.
-
-
-Example
-=======
-
-Example goes here.
-
+Recursable is a plugin that provides a method for recursing through trees and nested sets.
+
+  &lt;% @things.recurse do |thing, recurse| -%&gt;
+    &lt;li&gt;
+      &lt;%=h thing.name %&gt;
+      &lt;% unless thing.children.empty? -%&gt;
+        &lt;ul&gt;&lt;% recurse.call %&gt;&lt;/ul&gt;
+      &lt;% end %&gt;
+    &lt;% end %&gt;
+  &lt;% end -%&gt;
 
 Copyright (c) 2007 Daniel Morrison, Collective Idea, released under the MIT license</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -3,9 +3,7 @@
 # in those cases.
 module Recursable::Enumerable
   def recurse(&amp;block)
-    self.each do |x| 
-      x.recurse(&amp;block)
-    end
+    self.each {|x| x.recurse(&amp;block) }
   end
 
   # A recursion method built for awesome_nested_set.  Probably won't work with other nested_sets.'  </diff>
      <filename>lib/recursable/enumerable.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 module Recursable::Object
   def recurse(&amp;block)
-    yield self
+    block.call self
   end
 end
\ No newline at end of file</diff>
      <filename>lib/recursable/object.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>79c80bc7d299510e989d27ef00f0ae7b6e76321d</id>
    </parent>
  </parents>
  <author>
    <name>Brandon Keepers</name>
    <email>brandon@collectiveidea.com</email>
  </author>
  <url>http://github.com/collectiveidea/recursable/commit/601799b2c4aa37ea16420c76b8c655a70df9e6d9</url>
  <id>601799b2c4aa37ea16420c76b8c655a70df9e6d9</id>
  <committed-date>2009-02-23T07:18:32-08:00</committed-date>
  <authored-date>2009-02-23T07:18:32-08:00</authored-date>
  <message>Give brief example in docs</message>
  <tree>167b635911ccdff205762ddf922defbfc79c5504</tree>
  <committer>
    <name>Brandon Keepers</name>
    <email>brandon@collectiveidea.com</email>
  </committer>
</commit>
