Reloading specific classes

One way you can do this is with a before_filter in application.rb that uses load instead of require. This will reload the classes you specify on every hit so I wouldn't want to leave this running all the time. But if you have good reason to load a few specific classes on every hit then this is the easy way to get it done.

-Ezra