<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -128,10 +128,10 @@ describe &lt;%= controller_class_name %&gt;Controller do
       route_for(:controller =&gt; '&lt;%= controller_controller_name %&gt;', :action =&gt; 'new').should == &quot;/login&quot;
     end
     it &quot;should route the create &lt;%= controller_controller_name %&gt; correctly&quot; do
-      route_for(:controller =&gt; '&lt;%= controller_controller_name %&gt;', :action =&gt; 'create').should == &quot;/&lt;%= controller_routing_path %&gt;&quot;
+      route_for(:controller =&gt; '&lt;%= controller_controller_name %&gt;', :action =&gt; 'create').should == {:path =&gt; &quot;/&lt;%= controller_routing_path %&gt;&quot;, :method =&gt; :post}
     end
     it &quot;should route the destroy &lt;%= controller_controller_name %&gt; action correctly&quot; do
-      route_for(:controller =&gt; '&lt;%= controller_controller_name %&gt;', :action =&gt; 'destroy').should == &quot;/logout&quot;
+      route_for(:controller =&gt; '&lt;%= controller_controller_name %&gt;', :action =&gt; 'destroy').should == {:path =&gt; &quot;/logout&quot;, :method =&gt; :delete}
     end
   end
   </diff>
      <filename>generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -141,7 +141,7 @@ describe &lt;%= model_controller_class_name %&gt;Controller do
     end
     
     it &quot;should route {:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'create'} correctly&quot; do
-      route_for(:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'create').should == &quot;/register&quot;
+      route_for(:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'create').should == {:path =&gt; &quot;/register&quot;, :method =&gt; :post}
     end
     
     it &quot;should route &lt;%= model_controller_controller_name %&gt;'s 'show' action correctly&quot; do
@@ -153,11 +153,11 @@ describe &lt;%= model_controller_class_name %&gt;Controller do
     end
     
     it &quot;should route &lt;%= model_controller_controller_name %&gt;'s 'update' action correctly&quot; do
-      route_for(:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'update', :id =&gt; '1').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1&quot;
+      route_for(:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'update', :id =&gt; '1').should == {:path =&gt; &quot;/&lt;%= model_controller_routing_path %&gt;/1&quot;, :method =&gt; :put}
     end
     
     it &quot;should route &lt;%= model_controller_controller_name %&gt;'s 'destroy' action correctly&quot; do
-      route_for(:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'destroy', :id =&gt; '1').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1&quot;
+      route_for(:controller =&gt; '&lt;%= model_controller_controller_name %&gt;', :action =&gt; 'destroy', :id =&gt; '1').should == {:path =&gt; &quot;/&lt;%= model_controller_routing_path %&gt;/1&quot;, :method =&gt; :delete}
     end
   end
   
@@ -210,20 +210,20 @@ describe &lt;%= model_controller_class_name %&gt;Controller do
     
     it &quot;should route &lt;%= model_controller_routing_name %&gt;_path() to /&lt;%= model_controller_routing_path %&gt;&quot; do
       &lt;%= model_controller_routing_name %&gt;_path().should == &quot;/&lt;%= model_controller_routing_path %&gt;&quot;
-      formatted_&lt;%= model_controller_routing_name %&gt;_path(:format =&gt; 'xml').should == &quot;/&lt;%= model_controller_routing_path %&gt;.xml&quot;
-      formatted_&lt;%= model_controller_routing_name %&gt;_path(:format =&gt; 'json').should == &quot;/&lt;%= model_controller_routing_path %&gt;.json&quot;
+      &lt;%= model_controller_routing_name %&gt;_path(:format =&gt; 'xml').should == &quot;/&lt;%= model_controller_routing_path %&gt;.xml&quot;
+      &lt;%= model_controller_routing_name %&gt;_path(:format =&gt; 'json').should == &quot;/&lt;%= model_controller_routing_path %&gt;.json&quot;
     end
     
     it &quot;should route new_&lt;%= model_controller_routing_name.singularize %&gt;_path() to /&lt;%= model_controller_routing_path %&gt;/new&quot; do
       new_&lt;%= model_controller_routing_name.singularize %&gt;_path().should == &quot;/&lt;%= model_controller_routing_path %&gt;/new&quot;
-      formatted_new_&lt;%= model_controller_routing_name.singularize %&gt;_path(:format =&gt; 'xml').should == &quot;/&lt;%= model_controller_routing_path %&gt;/new.xml&quot;
-      formatted_new_&lt;%= model_controller_routing_name.singularize %&gt;_path(:format =&gt; 'json').should == &quot;/&lt;%= model_controller_routing_path %&gt;/new.json&quot;
+      new_&lt;%= model_controller_routing_name.singularize %&gt;_path(:format =&gt; 'xml').should == &quot;/&lt;%= model_controller_routing_path %&gt;/new.xml&quot;
+      new_&lt;%= model_controller_routing_name.singularize %&gt;_path(:format =&gt; 'json').should == &quot;/&lt;%= model_controller_routing_path %&gt;/new.json&quot;
     end
     
     it &quot;should route &lt;%= model_controller_routing_name.singularize %&gt;_(:id =&gt; '1') to /&lt;%= model_controller_routing_path %&gt;/1&quot; do
       &lt;%= model_controller_routing_name.singularize %&gt;_path(:id =&gt; '1').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1&quot;
-      formatted_&lt;%= model_controller_routing_name.singularize %&gt;_path(:id =&gt; '1', :format =&gt; 'xml').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1.xml&quot;
-      formatted_&lt;%= model_controller_routing_name.singularize %&gt;_path(:id =&gt; '1', :format =&gt; 'json').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1.json&quot;
+      &lt;%= model_controller_routing_name.singularize %&gt;_path(:id =&gt; '1', :format =&gt; 'xml').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1.xml&quot;
+      &lt;%= model_controller_routing_name.singularize %&gt;_path(:id =&gt; '1', :format =&gt; 'json').should == &quot;/&lt;%= model_controller_routing_path %&gt;/1.json&quot;
     end
     
     it &quot;should route edit_&lt;%= model_controller_routing_name.singularize %&gt;_path(:id =&gt; '1') to /&lt;%= model_controller_routing_path %&gt;/1/edit&quot; do</diff>
      <filename>generators/authenticated/templates/spec/controllers/users_controller_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>2884f0a395a1d1ccd1211c9cb03b2b6f101be595</id>
    </parent>
  </parents>
  <author>
    <name>Diego Carrion</name>
    <email>dc.rec1@gmail.com</email>
  </author>
  <url>http://github.com/dcrec1/restful-authentication-i18n/commit/ac4bcb0ee91b0ef4bcd6f9c06f083b38dbf8e3d3</url>
  <id>ac4bcb0ee91b0ef4bcd6f9c06f083b38dbf8e3d3</id>
  <committed-date>2009-03-24T15:19:47-07:00</committed-date>
  <authored-date>2009-03-24T15:19:47-07:00</authored-date>
  <message>updated to support Rails 2.3.2</message>
  <tree>95997dac874daabdb18fdf1f64449c84f201abb2</tree>
  <committer>
    <name>Diego Carrion</name>
    <email>dc.rec1@gmail.com</email>
  </committer>
</commit>
