Module: AbstractController::UrlFor
- Extended by:
 - ActiveSupport::Concern
 
- Includes:
 - ActionDispatch::Routing::UrlFor
 
- Included in:
 - ActionController::UrlFor
 
- Defined in:
 - actionpack/lib/abstract_controller/url_for.rb
 
Overview
# URL For
Includes ‘url_for` into the host class (e.g. an abstract controller or mailer). The class has to provide a `RouteSet` by implementing the `_routes` methods. Otherwise, an exception will be raised.
Note that this module is completely decoupled from HTTP - the only requirement is a valid ‘_routes` implementation.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
Methods included from ActiveSupport::Concern
append_features, class_methods, extended, included, prepend_features, prepended
Methods included from ActionDispatch::Routing::UrlFor
#full_url_for, #initialize, #route_for, #url_for, #url_options
Methods included from ActionDispatch::Routing::PolymorphicRoutes
#polymorphic_path, #polymorphic_url
Instance Method Details
#_routes ⇒ Object
      18 19 20 21  | 
    
      # File 'actionpack/lib/abstract_controller/url_for.rb', line 18 def _routes raise "In order to use #url_for, you must include routing helpers explicitly. " \ "For instance, `include Rails.application.routes.url_helpers`." end  |