Skip to content

Commit

Permalink
Merge pull request #194 from dstokes/fix-travis-bundler-versions
Browse files Browse the repository at this point in the history
Fix Travis bundler errors
  • Loading branch information
aughr authored Jul 19, 2019
2 parents ed3c22a + c7f3e64 commit 8c785bb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: ruby
rvm:
- 1.9.3
- 1.9.3-p551
- 2.0.0
- 2.1
- 2.2
Expand All @@ -9,4 +9,7 @@ rvm:
- 2.5
before_install:
- gem update
- gem install bundler
# downgrade bundler to fix installation error with ruby <= 2.2
# https://docs.travis-ci.com/user/languages/ruby/#bundler-20
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'

0 comments on commit 8c785bb

Please sign in to comment.