diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2016-10-16 12:49:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-16 12:49:25 -0500 |
commit | d21b0c9079c671bbeb5ec8f83dff058052899779 (patch) | |
tree | bf7caea87a1bbcbb4a672c3ed4fb80c9184f2ef2 /.travis.yml | |
parent | 28ce091f8239802a82c19743de039b2c1ec896d2 (diff) | |
parent | bb93276b8d399103e1b5b31b094e755efc3a7dab (diff) | |
download | rails-d21b0c9079c671bbeb5ec8f83dff058052899779.tar.gz rails-d21b0c9079c671bbeb5ec8f83dff058052899779.tar.bz2 rails-d21b0c9079c671bbeb5ec8f83dff058052899779.zip |
Merge pull request #26800 from prathamesh-sonpatki/bump-bundler
Bump bundler version in the before_install hook of travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 88dd6b7b5d..d29ef1702a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,7 @@ addons: bundler_args: --without test --jobs 3 --retry 3 before_install: - "rm ${BUNDLE_GEMFILE}.lock" + - "gem update bundler" - "[ -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" |