aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-07-29 12:15:04 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2014-07-29 12:15:04 -0700
commitf889831ed65bea14b6b687bdaa4012d73d81b2a6 (patch)
treeb51d7887d344378d7aaaec1b664731987e9f824a /actionpack/lib/action_dispatch/routing
parent0088b08dcaf16176c8f9364d1d786f0c3728d369 (diff)
downloadrails-f889831ed65bea14b6b687bdaa4012d73d81b2a6.tar.gz
rails-f889831ed65bea14b6b687bdaa4012d73d81b2a6.tar.bz2
rails-f889831ed65bea14b6b687bdaa4012d73d81b2a6.zip
ask the named routes collection if the route is defined
we should not be accessing internals to figure out if a method is defined.
Diffstat (limited to 'actionpack/lib/action_dispatch/routing')
-rw-r--r--actionpack/lib/action_dispatch/routing/route_set.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb
index 14c5d663a3..c2583e2be6 100644
--- a/actionpack/lib/action_dispatch/routing/route_set.rb
+++ b/actionpack/lib/action_dispatch/routing/route_set.rb
@@ -94,6 +94,10 @@ module ActionDispatch
@module = Module.new
end
+ def route_defined?(name)
+ @module.method_defined? name
+ end
+
def helper_names
@helpers.map(&:to_s)
end