aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-05-03 16:20:59 -0500
committerVipul A M <vipulnsward@gmail.com>2016-05-03 16:55:56 -0500
commite02a136f7f7024968fc915fca2a3d27464ae2bc0 (patch)
tree1a51d14ea5930ee10c5e158930a5d31c12a2b092 /.travis.yml
parent83a8682c1d10306a5e73cfb9c3f28172ed48427a (diff)
downloadrails-e02a136f7f7024968fc915fca2a3d27464ae2bc0.tar.gz
rails-e02a136f7f7024968fc915fca2a3d27464ae2bc0.tar.bz2
rails-e02a136f7f7024968fc915fca2a3d27464ae2bc0.zip
Depend on bundler 1.11.2 on travis until bundle update discrepancy is solved on 1.12.x
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 06b7fa87b2..5673ca653e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,9 +16,11 @@ addons:
postgresql: "9.4"
bundler_args: --without test --jobs 3 --retry 3
-
+#FIXME: Remove bundler uninstall on Travis when https://github.com/bundler/bundler/issues/4493 is fixed.
before_install:
- - gem install bundler
+ - rvm @global do gem uninstall bundler --all --ignore-dependencies --executables
+ - rvm @global do gem install bundler -v '1.11.2'
+ - bundle --version
- "rm ${BUNDLE_GEMFILE}.lock"
- "[ -f /tmp/beanstalkd-1.10/Makefile ] || (curl -L https://github.com/kr/beanstalkd/archive/v1.10.tar.gz | tar xz -C /tmp)"
- "pushd /tmp/beanstalkd-1.10 && make && (./beanstalkd &); popd"