I'm interested in how Rails automatically loads the modules in app/helpers into models.
To wit: when app/helpers/widget_helper.rb exists and contains WidgetHelper
that module is automatically loaded into the Widget model.
I have need of a directory in app that contains arbitrary code for inclusion into models, and would like to avoid having to include every individual module. I thought mocking this functionality would be useful.