From e14acca8a83f14d40d29cdd3418d626ca1043c07 Mon Sep 17 00:00:00 2001 From: Nicholas Seckar Date: Mon, 12 Sep 2005 14:41:51 +0000 Subject: Fixed dependencies related infinite recursion bug when a controller file does not contain a controller class. Closes #1760. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2218 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/dependencies.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb index c37e868b83..78e445afe4 100644 --- a/activesupport/lib/active_support/dependencies.rb +++ b/activesupport/lib/active_support/dependencies.rb @@ -93,10 +93,16 @@ module Dependencies #:nodoc: end break when File.file?(fs_path) - self.root.load_file!(fs_path) + loaded_file = self.root.load_file!(fs_path) # Import the loaded constant from Object provided we are the root node. self.const_set(name, Object.const_get(name)) if self.root? && Object.const_defined?(name) + + # Throw an error if we load the file but we don't find the Object we expect + if loaded_file and not self.const_defined?(name) + msg = "Already loaded file '#{fs_path}' but '#{name.to_s}' was not set, perhaps you need to rename '#{fs_path}'?" + raise LoadError, msg + end break end end -- cgit v1.2.3