Created
February 9, 2010 08:18
-
-
Save adelcambre/299017 to your computer and use it in GitHub Desktop.
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
| diff --git a/lib/bundler/setup.rb b/lib/bundler/setup.rb | |
| index e984348..05bd7e6 100644 | |
| --- a/lib/bundler/setup.rb | |
| +++ b/lib/bundler/setup.rb | |
| @@ -1,3 +1,7 @@ | |
| -require 'bundler' | |
| +begin | |
| + require '.bundle/environment.rb' | |
| +rescue LoadError | |
| + require 'bundler' | |
| +end | |
| Bundler.setup | |
| \ No newline at end of file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment