instance method
url_options
Ruby on Rails 3.0.20
Since v3.0.20Signature
url_options()
No documentation comment.
Source
# File actionpack/lib/action_controller/metal/url_for.rb, line 7
def url_options
super.reverse_merge(
:host => request.host_with_port,
:protocol => request.protocol,
:_path_segments => request.symbolized_path_parameters
).merge(:script_name => request.script_name)
end
Defined in actionpack/lib/action_controller/metal/url_for.rb line 7
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::UrlFor