Skip to content

Instantly share code, notes, and snippets.

@simsalabim
Created February 3, 2014 22:38
Show Gist options
  • Select an option

  • Save simsalabim/8793924 to your computer and use it in GitHub Desktop.

Select an option

Save simsalabim/8793924 to your computer and use it in GitHub Desktop.
def require_persistently(gem_name)
begin
require gem_name
rescue LoadError
puts "Installing #{gem_name}..."
`gem install #{gem_name}`
Gem.clear_paths
retry
ensure
require gem_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment