Methods
Class Public methods
eager_autoload!()
Link
Instance Public methods
autoload(const_name, path = @@at_path)
Link
# File activesupport/lib/active_support/dependencies/autoload.rb, line 11 def autoload(const_name, path = @@at_path) full = [self.name, @@under_path, const_name.to_s, path].compact.join("::") location = path || Inflector.underscore(full) if @@eager_autoload @@autoloads[const_name] = location end super const_name, location end
autoload_at(path)
Link
autoload_under(path)
Link
autoloads()
Link