Explicitly loading a file is faster with pry

Pry pro tip for quickly reloading a file: explicit loading the file that you’re editing is way faster than reloading all files with:

reload!

So get the relative path of the file. Run this:

load 'app/models/my_model.rb'

Ignore warnings that constants are already initialized.