diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2011-06-13 18:25:26 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2011-06-13 18:25:26 +0100 |
commit | 190677d0f2b9b2e82811fd9c1da504f3b6fe941d (patch) | |
tree | e0e84f34b4aa83bac1593130a7ff06631446e1f5 /activesupport/lib | |
parent | a6467802ff2be35c6665635f1cdfdcea07aeaa12 (diff) | |
download | rails-190677d0f2b9b2e82811fd9c1da504f3b6fe941d.tar.gz rails-190677d0f2b9b2e82811fd9c1da504f3b6fe941d.tar.bz2 rails-190677d0f2b9b2e82811fd9c1da504f3b6fe941d.zip |
Remove obsolete compatibility module
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/dependencies.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb index 26c5c157cb..d1543c4c58 100644 --- a/activesupport/lib/active_support/dependencies.rb +++ b/activesupport/lib/active_support/dependencies.rb @@ -628,17 +628,6 @@ module ActiveSupport #:nodoc: return [] end - class LoadingModule #:nodoc: - # Old style environment.rb referenced this method directly. Please note, it doesn't - # actually *do* anything any more. - def self.root(*args) - if defined?(Rails) && Rails.logger - Rails.logger.warn "Your environment.rb uses the old syntax, it may not continue to work in future releases." - Rails.logger.warn "For upgrade instructions please see: http://manuals.rubyonrails.com/read/book/19" - end - end - end - # Convert the provided const desc to a qualified constant name (as a string). # A module, class, symbol, or string may be provided. def to_constant_name(desc) #:nodoc: |