mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
28 lines
No EOL
738 B
Ruby
28 lines
No EOL
738 B
Ruby
module ActionController
|
|
module UrlFor
|
|
extend ActiveSupport::Concern
|
|
|
|
include ActionDispatch::Routing::UrlFor
|
|
|
|
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
|
|
|
|
def _router
|
|
raise "In order to use #url_for, you must include the helpers of a particular " \
|
|
"router. For instance, `include Rails.application.routes.url_helpers"
|
|
end
|
|
|
|
module ClassMethods
|
|
def action_methods
|
|
@action_methods ||= begin
|
|
super - _router.named_routes.helper_names
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |