aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb15
-rw-r--r--actionpack/test/dispatch/routing_test.rb9
2 files changed, 16 insertions, 8 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index 40e30bca6f..3eadb0e9fe 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -35,18 +35,17 @@ module ActionDispatch
end
def root(options = {})
- raise "Can't rename root to #{options[:as].inspect}: root is always named 'root'" if options.include?(:as)
- match '/', options.merge(:as => :root)
+ match '/', options.reverse_merge(:as => :root)
end
def match(*args)
- if args.one? && args.first.is_a?(Hash)
- options = args.first
- path = options.keys.first
- options[:to] = options.delete(path)
+ options = args.extract_options!
+
+ if args.empty?
+ path, to = options.find {|name,value| name.is_a?(String)}
+ options.merge!(:to => to).delete(path) if path
else
- path = args.first
- options = args.extract_options!
+ path = args.first
end
conditions, defaults = {}, {}
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb
index 7ca85a4201..82231cb3d9 100644
--- a/actionpack/test/dispatch/routing_test.rb
+++ b/actionpack/test/dispatch/routing_test.rb
@@ -111,6 +111,7 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
end
root :to => 'projects#index'
+ match '/info' => 'projects#info', :as => 'info'
end
end
@@ -469,6 +470,14 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
end
end
+ def test_index
+ with_test_routes do
+ assert_equal '/info', info_path
+ get '/info'
+ assert_equal 'projects#info', @response.body
+ end
+ end
+
private
def with_test_routes
real_routes, temp_routes = ActionController::Routing::Routes, Routes