Merge pull request #1513 from gowda/travis-ruby-2.2.10

Handle ruby-2.2.10 version on travis builds
This commit is contained in:
namusyaka 2019-02-03 21:59:22 +09:00 committed by GitHub
commit cb4f651282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -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: