1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Run gem update --system before install on CI

There's an issue with the combination of Bundler `1.16.1` and rubygems `2.7.3`.
This command will install rubygems `2.7.4` in order to fix it.

https://github.com/travis-ci/travis-ci/issues/8978
This commit is contained in:
Leonardo Tegon 2017-12-29 16:11:04 -02:00
parent f016e823cd
commit caf633854d
No known key found for this signature in database
GPG key ID: 5B6E037E53922ECF

View file

@ -44,7 +44,9 @@ env:
- DEVISE_ORM=active_record
- DEVISE_ORM=mongoid
before_install: "rm ${BUNDLE_GEMFILE}.lock"
before_install:
- "rm ${BUNDLE_GEMFILE}.lock"
- gem update --system
before_script: "bundle update"