Skip to content

Instantly share code, notes, and snippets.

@hron84
Created January 2, 2011 10:57
Show Gist options
  • Save hron84/762448 to your computer and use it in GitHub Desktop.
Save hron84/762448 to your computer and use it in GitHub Desktop.
preinitializer.rb
begin
require "rubygems"
require "bundler"
if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.5")
raise RuntimeError, "Your bundler version is too old." +
"Run `gem install bundler` to upgrade."
end
# Set up load paths for all bundled gems
Bundler.setup
rescue Bundler::GemNotFound
raise RuntimeError, "Bundler couldn't find some gems." +
"Did you run `bundle install`?"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment