aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/dependencies
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-09-14 21:31:49 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-09-14 21:31:49 -0500
commitf210a369d1c3fdbd6de768f4b9de3891c1bf7d25 (patch)
treea30e7cfcf244543678ddd344674abb33ea6b6b68 /activesupport/lib/active_support/dependencies
parentb47d5bb77ea04babe9d098872cac934d27fb7277 (diff)
downloadrails-f210a369d1c3fdbd6de768f4b9de3891c1bf7d25.tar.gz
rails-f210a369d1c3fdbd6de768f4b9de3891c1bf7d25.tar.bz2
rails-f210a369d1c3fdbd6de768f4b9de3891c1bf7d25.zip
add :nodoc: to AS::Autoload#extended [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/dependencies')
-rw-r--r--activesupport/lib/active_support/dependencies/autoload.rb3
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