Aaron Yodaiken
Aaron Yodaiken

Reputation: 19551

autoload with namespaces/submodules

I'm using modules as namespaces in ruby. How would I go about autoloading...something like autoload :"App::ModuleA", 'app/module_a that doesn't throw a "must be constant name" error?

Upvotes: 7

Views: 5098

Answers (1)

Marc-André Lafortune
Marc-André Lafortune

Reputation: 79572

You need to pass a symbol to autoload (probably a typo in your question), and call it on the parent of the constant, like:

App.autoload :ModuleA, "app/module_a"

Note that this works for nested levels too. Say that in app/module_a you have:

module App::ModuleA
  autoload :Inner, "path/to/inner"
end

When Ruby encounters App::ModuleA::Inner, it will first attempt to access ModuleA, succeed by autoloading it, and only then attempt Inner, which succeeds also because it now knows where to autoload it.

Upvotes: 12

Related Questions