2010-08-25 07:41:56 -04:00
|
|
|
module ActionDispatch
|
|
|
|
module Routing
|
|
|
|
class RoutesProxy #:nodoc:
|
|
|
|
include ActionDispatch::Routing::UrlFor
|
|
|
|
|
|
|
|
attr_accessor :scope, :routes
|
|
|
|
alias :_routes :routes
|
|
|
|
|
|
|
|
def initialize(routes, scope)
|
|
|
|
@routes, @scope = routes, scope
|
|
|
|
end
|
|
|
|
|
|
|
|
def url_options
|
|
|
|
scope.send(:_with_routes, routes) do
|
|
|
|
scope.url_options
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-03 14:26:45 -05:00
|
|
|
def respond_to?(method, include_private = false)
|
|
|
|
super || routes.url_helpers.respond_to?(method)
|
|
|
|
end
|
|
|
|
|
2010-08-25 07:41:56 -04:00
|
|
|
def method_missing(method, *args)
|
|
|
|
if routes.url_helpers.respond_to?(method)
|
|
|
|
self.class.class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
|
|
|
def #{method}(*args)
|
|
|
|
options = args.extract_options!
|
|
|
|
args << url_options.merge((options || {}).symbolize_keys)
|
|
|
|
routes.url_helpers.#{method}(*args)
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
send(method, *args)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|