diff options
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/dependencies/autoload.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/dependencies/autoload.rb b/activesupport/lib/active_support/dependencies/autoload.rb index df490ae298..9fc58a338f 100644 --- a/activesupport/lib/active_support/dependencies/autoload.rb +++ b/activesupport/lib/active_support/dependencies/autoload.rb @@ -22,9 +22,8 @@ module ActiveSupport # Then your library can be eager loaded by simply calling: # # MyLib.eager_load! - # module Autoload - def self.extended(base) + def self.extended(base) # :nodoc: base.class_eval do @_autoloads = {} @_under_path = nil |