michaelklishin / classloaders
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
LICENSE | ||
| |
README.rdoc | ||
| |
Rakefile | ||
| |
TODO | ||
| |
lib/ | ||
| |
spec/ |
README.rdoc
Class loaders for Ruby applications
This is a collection (well, not yet, but we are moving towards it) of class loaders extracted from Merb and Ruby on Rails.
Goals and purpose of this library
To be used in any kind of Ruby applications to load files from certain directories (app/models, lib, vendor) without need to require the whole config/environment.rb and config/init.rb which is a huge overhead for say a lightweight EventMachine daemon.
To test class loading as much as possible automatically to make sure people don’t waste oceans of time when testing it manually.

