I\'m developing a ruby module that I include in my rails app. I want it to be reloaded automatically when it changes. I\'ve done extensive googling, and looked at the variou
I found how to do this:
FooModule
lib/foo_module.rb
require_dependency
These steps are both required, and no others are required.