Is there a way you can include all files in a directory except one, or all directories except one? So something like:
require_tree . :except \'this_one\' >
Instead of
require_tree . :except 'this_one'
write
require_tree "." stub "this_one"
require_tree "."
stub "this_one"