mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Handle ruby-2.2.10 version on travis builds
Description of the cause from travis-ci documentation: https://docs.travis-ci.com/user/languages/ruby/#bundler-20
This commit is contained in:
parent
f77a0d0baf
commit
ea3f43ddab
1 changed files with 5 additions and 1 deletions
|
@ -5,7 +5,11 @@ dist: trusty
|
|||
sudo: false
|
||||
|
||||
before_install:
|
||||
- gem install bundler
|
||||
- if [ "$TRAVIS_RUBY_VERSION" = "2.2.10" ]; then
|
||||
gem install bundler -v '< 2.0';
|
||||
else
|
||||
gem install bundler;
|
||||
fi
|
||||
- export CXX="g++-4.8"
|
||||
|
||||
addons:
|
||||
|
|
Loading…
Reference in a new issue