Travis could not find satellite 1.7.4

Build failed after updating the provider version in gemspec: https://travis-ci.org/yandex-money/yandex-money-sdk-ruby/jobs/38536867

How can I upgrade bundler to version 1.7.4?

+5
source share
2 answers

Try adding the following code to the additional install section of your .travis file:

  gem uninstall bundler gem install bundler --version '1.7.4' 

So, the beginning of your .travis file will be:

 language: ruby install: - gem uninstall bundler - gem install bundler --version '1.7.4' script: "rake" 
+11
source

Add this to your .travis.yml :

 before_install: gem install bundler --pre 
+2
source

Source: https://habr.com/ru/post/1205156/


All Articles