diff options
author | danielsdeleo <dan@opscode.com> | 2013-12-30 12:38:21 -0800 |
---|---|---|
committer | danielsdeleo <dan@opscode.com> | 2013-12-30 12:38:21 -0800 |
commit | 7ff6de20561ba20b0a6876c66e1ddd3271a10084 (patch) | |
tree | afc00acbb494013579ce1ff9f7c9569ea6ef0816 /.travis.yml | |
parent | 8d9be5997347bd99d40692f33548223b789d9add (diff) | |
download | chef-7ff6de20561ba20b0a6876c66e1ddd3271a10084.tar.gz |
Temporarily for travis to use rubygems 2.1.x
Fixes https://tickets.opscode.com/browse/CHEF-4916
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 6468f54d57..634474e376 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,16 @@ +# Temporary workaround for issue with rubygems 2.2.0 with bundler 1.5 on ruby +# 1.8.7. +# +# A fix has been merged to rubygems but not yet released. See: +# https://github.com/rubygems/rubygems/commit/f8e0f1d5f67cfc4e1966cc1e2db367aebf8a09e4 +# +# See also CHEF-4916 +# +# This workaround should be removed when that fix is released. +before_install: + - gem update --system 2.1.11 + - gem --version + rvm: - 1.8.7 - 1.9.3 |