aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/lib/action_controller/resources.rb8
-rw-r--r--actionpack/test/controller/resources_test.rb6
2 files changed, 7 insertions, 7 deletions
diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb
index 2b4c9217d5..638052a2aa 100644
--- a/actionpack/lib/action_controller/resources.rb
+++ b/actionpack/lib/action_controller/resources.rb
@@ -69,15 +69,15 @@ module ActionController
end
end
- def resources(*entities)
+ def resources(*entities, &block)
options = entities.last.is_a?(Hash) ? entities.pop : { }
- entities.each { |entity| map_resource(entity, options.dup) { yield if block_given? } }
+ entities.each { |entity| map_resource entity, options.dup, &block }
end
private
def map_resource(entities, options = {}, &block)
resource = Resource.new(entities, options)
-
+
with_options :controller => resource.controller do |map|
map_collection_actions(map, resource)
map_new_actions(map, resource)
@@ -154,4 +154,4 @@ module ActionController
end
end
-ActionController::Routing::RouteSet::Mapper.send :include, ActionController::Resources \ No newline at end of file
+ActionController::Routing::RouteSet::Mapper.send :include, ActionController::Resources
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb
index 96b6431567..e2ef2a819d 100644
--- a/actionpack/test/controller/resources_test.rb
+++ b/actionpack/test/controller/resources_test.rb
@@ -114,15 +114,15 @@ class ResourcesTest < Test::Unit::TestCase
end
end
- def xtest_nested_restful_routes
+ def test_nested_restful_routes
with_routing do |set|
set.draw do |map|
- map.resources(:messages) do
+ map.resources(:messages) do |map|
map.resources(:comments)
end
end
- with_options({ :controller => :comments }) do |controller|
+ with_options(:controller => 'comments', :message_id => '1') do |controller|
controller.assert_routing "/messages/1/comments", :action => 'index'
controller.assert_routing "/messages/1/comments.xml" , :action => 'index', :format => 'xml'
controller.assert_routing "/messages/1/comments/new", :action => 'new'