method
extended
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::Autoload
extended(base)public
No documentation available.
# File activesupport/lib/active_support/dependencies/autoload.rb, line 30
def self.extended(base) # :nodoc:
if RUBY_VERSION < "3"
base.class_eval do
@_autoloads = nil
@_under_path = nil
@_at_path = nil
@_eager_autoload = false
@_eagerloaded_constants = nil
end
end
end