I would like to be able to load an entire app so that I may find the descendants of a given class.
For example given I have the following class defined:
From Configuring Rails Applications
EDIT:
To manually load you should be able to do something like:
matcher = /\A#{Regexp.escape(load_path)}\/(.*)\.rb\Z/
Dir.glob("#{load_path}/**/*.rb").sort.each do |file|
require_dependency file.sub(matcher, '\1')
end