We don't need delegating polymorphic_url and polymorphic_path anymore

This commit is contained in:
Piotr Sarnacki
2010-07-24 17:43:33 +02:00
parent a132229d7b
commit 4cd6f77526

View File

@@ -264,16 +264,6 @@ module ActionDispatch
class RoutesProxy
include ActionDispatch::Routing::UrlFor
%w(url_options polymorphic_url polymorphic_path).each do |method|
self.class_eval <<-RUBY, __FILE__, __LINE__ +1
def #{method}(*args)
scope.send(:_with_routes, routes) do
scope.#{method}(*args)
end
end
RUBY
end
attr_accessor :scope, :routes
alias :_routes :routes
@@ -281,6 +271,12 @@ module ActionDispatch
@routes, @scope = routes, scope
end
def url_options
scope.send(:_with_routes, routes) do
scope.url_options
end
end
def method_missing(method, *args)
if routes.url_helpers.respond_to?(method)
self.class.class_eval <<-RUBY, __FILE__, __LINE__ + 1