From 7f4f0377730f5fc266824084188cc17cf246932e Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 8 Jan 2019 07:53:03 +1300 Subject: [PATCH] Add bundler to before_install https://docs.travis-ci.com/user/languages/ruby/#bundler-20 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 295664f5..a4e1fb88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ sudo: false # route your build to the container-based infrastructure for a faste language: ruby +before_install: + - gem install bundler -v '< 2' + cache: # Cache Ruby bundles - bundler