# File 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
# File lib/active_support/dependencies/autoload.rb, line 28
28: def autoload_at(path)
29: @@at_path, old_path = path, @@at_path
30: yield
31: ensure
32: @@at_path = old_path
33: end
# File lib/active_support/dependencies/autoload.rb, line 21
21: def autoload_under(path)
22: @@under_path, old_path = path, @@under_path
23: yield
24: ensure
25: @@under_path = old_path
26: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.