diff options
| author | Misty De Meo | 2017-02-28 18:54:49 +1100 | 
|---|---|---|
| committer | Misty De Meo | 2017-02-28 22:42:41 +1100 | 
| commit | 668d7a0c49127e2a5e6c3dd01cc518b241d4f110 (patch) | |
| tree | 1fb3593c798473bb0e2e5362415821952eff4e86 | |
| parent | f332bf4a762cfc5e8f79675ed1b3c27a345e7178 (diff) | |
| download | brew-668d7a0c49127e2a5e6c3dd01cc518b241d4f110.tar.bz2 | |
test: add a bundle config
This smooths over the transition for users who have an existing
bundle config in this location due to having gems installed at the old
path.
Closes #2203.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | Library/Homebrew/test/.bundle/config | 3 | 
2 files changed, 6 insertions, 0 deletions
| diff --git a/.gitignore b/.gitignore index 7b1678561..31dedcc93 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,6 @@  !/CONTRIBUTING.md  !/LICENSE.txt  !/README.md + +# Unignore tests' bundle config +!/Library/Homebrew/test/.bundle diff --git a/Library/Homebrew/test/.bundle/config b/Library/Homebrew/test/.bundle/config new file mode 100644 index 000000000..dcf3d1c4c --- /dev/null +++ b/Library/Homebrew/test/.bundle/config @@ -0,0 +1,3 @@ +--- +BUNDLE_PATH: "../vendor/bundle" +BUNDLE_DISABLE_SHARED_GEMS: '1' | 
