<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,12 +1,12 @@
 class Hash
-  def deep_merge other
-    self.dup.deep_merge! other
+  def merge_tree other
+    self.dup.merge_tree! other
   end
   
-  def deep_merge! other
+  def merge_tree! other
     other.each do |key, value|
       if self[key].is_a?(Hash) &amp;&amp; value.is_a?(Hash)
-        self[key] = self[key].deep_merge(value)
+        self[key] = self[key].merge_tree(value)
       else
         self[key] = value
       end</diff>
      <filename>lib/extensions.rb</filename>
    </modified>
    <modified>
      <diff>@@ -321,10 +321,10 @@ module Squirrel
       def to_find_include
         @condition_blocks.inject({}) do |inc, cb|
           if cb.reflection.nil?
-            inc.merge(cb.to_find_include)
+            inc.merge_tree(cb.to_find_include)
           else
             inc[cb.reflection] ||= {}
-            inc[cb.reflection] = inc[cb.reflection].merge(cb.to_find_include)
+            inc[cb.reflection] = inc[cb.reflection].merge_tree(cb.to_find_include)
             inc
           end
         end</diff>
      <filename>lib/squirrel.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>89b6ee959fd06aecdd46a7576639a3f91be99902</id>
    </parent>
  </parents>
  <author>
    <name>Jon Yurek</name>
    <email>jyurek@thoughtbot.com</email>
  </author>
  <url>http://github.com/thoughtbot/squirrel/commit/bb9c40eafd4768dade916441abcaab585cf4a59e</url>
  <id>bb9c40eafd4768dade916441abcaab585cf4a59e</id>
  <committed-date>2008-06-26T13:24:49-07:00</committed-date>
  <authored-date>2008-06-26T13:24:49-07:00</authored-date>
  <message>Fixed the actual problem this time.</message>
  <tree>b363755c3c20ada153fca73c97659a92779a53c5</tree>
  <committer>
    <name>Jon Yurek</name>
    <email>jyurek@thoughtbot.com</email>
  </committer>
</commit>
