Skip to Content Skip to Search
Methods
#
A

Instance Public methods

_routes()

# File actionpack/lib/abstract_controller/url_for.rb, line 20
def _routes
  nil
end

action_methods()

# File actionpack/lib/abstract_controller/url_for.rb, line 24
def action_methods
  @action_methods ||= begin
    if _routes
      super - _routes.named_routes.helper_names
    else
      super
    end
  end
end