aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/dependencies.rb
diff options
context:
space:
mode:
authorNoah Lindner <nwlindner@gmail.com>2014-02-08 15:35:12 -0800
committerNoah Lindner <nwlindner@gmail.com>2014-02-08 15:59:08 -0800
commit4fa8c8b52f2ee7155b18cee2f3fc978075c68db1 (patch)
treed4cbb5da120045c28b38cd2db299ac85c130c5bd /activesupport/lib/active_support/dependencies.rb
parent3c2fe5ccc5e51c0c3133f471cb3f0ee882fabf54 (diff)
downloadrails-4fa8c8b52f2ee7155b18cee2f3fc978075c68db1.tar.gz
rails-4fa8c8b52f2ee7155b18cee2f3fc978075c68db1.tar.bz2
rails-4fa8c8b52f2ee7155b18cee2f3fc978075c68db1.zip
Fixed an issue where reloading of removed dependencies would cause an unexpected circular dependency error
Diffstat (limited to 'activesupport/lib/active_support/dependencies.rb')
-rw-r--r--activesupport/lib/active_support/dependencies.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb
index 6be19771f5..7ea3ff7d3f 100644
--- a/activesupport/lib/active_support/dependencies.rb
+++ b/activesupport/lib/active_support/dependencies.rb
@@ -665,6 +665,14 @@ module ActiveSupport #:nodoc:
constants = normalized.split('::')
to_remove = constants.pop
+ # Remove the file path from the loaded list.
+ file_path = search_for_file(const.underscore)
+ if file_path
+ expanded = File.expand_path(file_path)
+ expanded.sub!(/\.rb\z/, '')
+ self.loaded.delete(expanded)
+ end
+
if constants.empty?
parent = Object
else