diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-05-22 17:51:37 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-05-22 17:56:20 +0900 |
commit | 39de88e4b534f2066b24d8e9dc8acf34dc0cbcfd (patch) | |
tree | 045f87deba37e0d0084fd8df4c69bcd40fb7b192 | |
parent | e96c7f2775f6b3df485cac87b4949c1baa233e18 (diff) | |
download | rails-39de88e4b534f2066b24d8e9dc8acf34dc0cbcfd.tar.gz rails-39de88e4b534f2066b24d8e9dc8acf34dc0cbcfd.tar.bz2 rails-39de88e4b534f2066b24d8e9dc8acf34dc0cbcfd.zip |
Remove rubygems version lock
This version lock added by 3d890b66c1bfbdcabb7ef66e0774e0f01e2ed5d6.
But original issue is fixed with bundler 1.15.
Ref: https://github.com/rubygems/rubygems/issues/1911#issuecomment-300148516
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9d63fd4b13..3a774e1564 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ addons: bundler_args: --without test --jobs 3 --retry 3 before_install: - "rm ${BUNDLE_GEMFILE}.lock" - - "gem update --system 2.6.11" + - "gem update --system" - "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" |