From 6a48e89ae7811904822eb203ad9f54897e460f07 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 17 Feb 2005 02:04:37 +0000 Subject: Fix that routes werent being loaded in production environment git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@642 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/routing.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb index 7ea8f5be5e..6c3b73843c 100644 --- a/actionpack/lib/action_controller/routing.rb +++ b/actionpack/lib/action_controller/routing.rb @@ -237,7 +237,8 @@ module ActionController alias :connect :route def reload - begin require_dependency(ROUTE_FILE) + begin + require_dependency(ROUTE_FILE) if Object.method_defined?(:require_dependency) rescue LoadError, ScriptError => e raise RoutingError, "Cannot load config/routes.rb:\n #{e.message}" ensure # Ensure that there is at least one route: -- cgit v1.2.3