`bundle` is not installed for Ruby 2.3

The before_install gem update didn’t work for me:

Updating rubygems-update
ERROR:  Error installing rubygems-update:
rubygems-update requires Ruby version >= 2.3.0.

This did the trick tho:

before_install:
    - gem install bundler -v '< 2'
1 Like