1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_controller/metal/url_for.rb

25 lines
592 B
Ruby
Raw Normal View History

module ActionController
module UrlFor
extend ActiveSupport::Concern
include AbstractController::UrlFor
def url_options
2010-09-27 15:14:18 -04:00
@_url_options ||= super.reverse_merge(
:host => request.host_with_port,
:protocol => request.protocol,
:_path_segments => request.symbolized_path_parameters
).freeze
if _routes.equal?(env["action_dispatch.routes"])
@_url_options.dup.tap do |options|
options[:script_name] = request.script_name.dup
2010-09-27 15:14:18 -04:00
options.freeze
end
2010-09-27 15:14:18 -04:00
else
@_url_options
end
end
end
end