Source: show | on GitHub
# File actionpack/lib/abstract_controller/url_for.rb, line 18 18: def _routes 19: nil 20: end
# File actionpack/lib/abstract_controller/url_for.rb, line 22 22: def action_methods 23: @action_methods ||= begin 24: if _routes 25: super - _routes.named_routes.helper_names 26: else 27: super 28: end 29: end 30: end