diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-09-14 21:31:49 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-09-14 21:31:49 -0500 |
commit | f210a369d1c3fdbd6de768f4b9de3891c1bf7d25 (patch) | |
tree | a30e7cfcf244543678ddd344674abb33ea6b6b68 /activesupport/lib | |
parent | b47d5bb77ea04babe9d098872cac934d27fb7277 (diff) | |
download | rails-f210a369d1c3fdbd6de768f4b9de3891c1bf7d25.tar.gz rails-f210a369d1c3fdbd6de768f4b9de3891c1bf7d25.tar.bz2 rails-f210a369d1c3fdbd6de768f4b9de3891c1bf7d25.zip |
add :nodoc: to AS::Autoload#extended [ci skip]
Diffstat (limited to 'activesupport/lib')
-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 |