Skip to content

Commit 403a13c

Browse files
committed
Fix failing Travis CI setup
The builds are failing due to a strange error where rake cannot find other dependencies. bundler: failed to load command: rake LoadError: cannot load such file -- bundler/dep_proxy It appears this is a known issue (travis-ci/travis-ci#9062) which links to a Ruby Gem issue (rubygems/rubygems#2055). This implements a hopefully simple fix which ensures bundler is updated on the system, and that the installed version of Rails has the bundler gem available.
1 parent 1b721b0 commit 403a13c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ language: ruby
22
bundler_args: --binstubs --jobs=3 --retry=3
33
cache: bundler
44
sudo: false
5+
before_install:
6+
- gem update --system
7+
- gem install bundler
58
script: bin/rake
69
rvm:
710
- 2.5.0

0 commit comments

Comments
 (0)