Skip to content

Instantly share code, notes, and snippets.

@sunny
Created November 18, 2010 14:05
Show Gist options
  • Save sunny/705002 to your computer and use it in GitHub Desktop.
Save sunny/705002 to your computer and use it in GitHub Desktop.
Load libraries in ruby or retry with rubygems
retried = false
begin
require 'foo'
require 'bar'
require 'spam'
rescue LoadError => e
raise if retried
require 'rubygems'
retried = true
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment