Try adding the following code to the additional install section of your .travis file:
gem uninstall bundler gem install bundler
So, the beginning of your .travis file will be:
language: ruby install: - gem uninstall bundler - gem install bundler
source share