Skip to content

Instantly share code, notes, and snippets.

@timinator
timinator / ruby-rails-constant-loading.md
Last active July 26, 2018 13:40
Ruby and Rails Constant Loading Overview

Ruby and Rails autoloading

Ruby

How does Ruby load a class?

  • Figure where to look (i.e. which files and directories) to find your constant
  • Figure out which constant to load.

Where does it look?