From 3c0547fa508d212f79050301d5622434e4731c48 Mon Sep 17 00:00:00 2001 From: James Wen Date: Mon, 7 Dec 2015 19:26:04 -0500 Subject: [PATCH] Update bundler before in Travis CI builds Builds are broken because the `bundler` version that Travis CI automatically uses at this time (`1.7.6`) is coming across an error that was fixed in a later version/release. Having an outdated version of `bundler` in the Travis CI builds is an ongoing issue and this is currently the easiest work-around. See: * https://github.com/bundler/bundler/issues/3558 * https://github.com/travis-ci/travis-ci/issues/3531 [fixes #846] --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d73908ae3..9e9e6d3c5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ rvm: - rbx-2 before_install: - gem update --system + - gem update bundler install: "bundle install" script: "bundle exec rake spec:unit spec:acceptance features" jdk: