Created
May 26, 2009 06:08
-
-
Save foca/117917 to your computer and use it in GitHub Desktop.
try requiring files until one of them is successfully required
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def cascade_require(*libs) | |
require libs.shift.to_s | |
rescue LoadError | |
libs.empty? ? raise : retry | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment