aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisty De Meo2017-02-28 18:54:49 +1100
committerMisty De Meo2017-02-28 22:42:41 +1100
commit668d7a0c49127e2a5e6c3dd01cc518b241d4f110 (patch)
tree1fb3593c798473bb0e2e5362415821952eff4e86
parentf332bf4a762cfc5e8f79675ed1b3c27a345e7178 (diff)
downloadbrew-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--.gitignore3
-rw-r--r--Library/Homebrew/test/.bundle/config3
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'