<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,6 +2,29 @@
 
 Selectively map resource routes to allow cleaner nesting of resources without having to specify redundant ids for parent resources.
 
+## IMPORTANT
+
+A patch I submitted to edge rails recently has been accepted.
+
+The update adds a :shallow option to the resources method eliminating my original need for this plugin.
+
+This reduces the example from this document from ...
+
+    map.resources :companies do |company|
+      company.resources :people, :only =&gt; [ :collection, :new ]
+    end
+    map.resources :people, :except =&gt; [ :collection, :new ]
+    
+... to ...
+
+    map.resources :companies, :shallow =&gt; true do |company|
+      company.resources :people
+    end
+
+... or ...
+
+    map.resources :companies, :shallow =&gt; true, :has_many =&gt; :people
+
 ## Example
 
     map.resources :companies do |company|</diff>
      <filename>README.markdown</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>00656c1d6b6a86e9801c62b609cc0ba631e5ae4a</id>
    </parent>
  </parents>
  <author>
    <name>S. Brent Faulkner</name>
    <email>brentf@unwwwired.net</email>
  </author>
  <url>http://github.com/sbfaulkner/selective_mapper/commit/846fcf0bccd77a4fba5e3da058d1a2d734cfd7fd</url>
  <id>846fcf0bccd77a4fba5e3da058d1a2d734cfd7fd</id>
  <committed-date>2008-09-03T08:32:16-07:00</committed-date>
  <authored-date>2008-09-03T08:32:16-07:00</authored-date>
  <message>add note regarding edge patch</message>
  <tree>7fa5493716da1afd74c6e74d6477760d29d244b2</tree>
  <committer>
    <name>S. Brent Faulkner</name>
    <email>brentf@unwwwired.net</email>
  </committer>
</commit>
