Methods
Class Public methods
Instance Public methods
# File activesupport/lib/active_support/dependencies/autoload.rb, line 11 11: def autoload(const_name, path = @@at_path) 12: full = [self.name, @@under_path, const_name.to_s, path].compact.join("::") 13: location = path || Inflector.underscore(full) 14: 15: if @@eager_autoload 16: @@autoloads[const_name] = location 17: end 18: super const_name, location 19: end