Skip to content

Commit

Permalink
Fix failing builds on Travis CI by using latest rubygems
Browse files Browse the repository at this point in the history
Currently, builds are failing on Travis CI. e.g.) https://travis-ci.org/bbatsov/rubocop/jobs/194136460

The cause is from rubygems, and it has been fixed.

See also. ku1ik/rainbow#48

Note
------

Builds seem to be failing for different reason in JRuby.
https://travis-ci.org/bbatsov/rubocop/jobs/194136459

This change hasn't fixed the problem.
  • Loading branch information
pocke committed Jan 22, 2017
1 parent c500b3c commit 66872d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ matrix:
- rvm: ruby-head
- rvm: rbx-3
fast_finish: true
before_install: gem update --remote bundler
before_install:
- gem update --remote bundler
- gem update --system
install:
- bundle install --retry=3
script:
Expand Down

0 comments on commit 66872d8

Please sign in to comment.