aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/metal/url_for.rb
blob: 0c1e2fbe80e25edff400f7a2772ebfbe04803b38 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                           
 
                   



                                                             
                                                  

       
               
                                                                                       
                                                                                 
       



                                 
                                                   


           
     
   
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 _routes
      raise "In order to use #url_for, you must include the helpers of a particular " \
            "routes. For instance, `include Rails.application.routes.url_helpers"
    end

    module ClassMethods
      def action_methods
        @action_methods ||= begin
          super - _routes.named_routes.helper_names
        end
      end
    end
  end
end