Created
December 9, 2010 05:41
-
-
Save dakatsuka/734377 to your computer and use it in GitHub Desktop.
Rails2.3でbundlerに対応させる
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
begin | |
require "rubygems" | |
require "bundler" | |
if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.20") | |
raise RuntimeError, "Your bundler version is too old." + | |
"Run `gem install bundler` to upgrade." | |
end | |
# Set up load paths for all bundled gems | |
ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__) | |
Bundler.setup | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment