Skip to Content Skip to Search

module AbstractController::UrlFor::ClassMethods

Public instance methods

_routes()

Permalink
Source code GitHub
# File actionpack/lib/abstract_controller/url_for.rb, line 22
def _routes
  nil
end

action_methods()

Permalink
Source code GitHub
# File actionpack/lib/abstract_controller/url_for.rb, line 26
def action_methods
  @action_methods ||= if _routes
    super - _routes.named_routes.helper_names
  else
    super
  end
end

Definition files