Flowdock
method

extended

Importance_0
extended(base) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.