• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3set +ex
4[[ -s /etc/profile.d/rvm.sh ]] && . /etc/profile.d/rvm.sh
5set -e  # rvm commands are very verbose
6rvm --default use ruby-2.4.1
7# The version needs to be updated if the version specified in Gemfile.lock is changed
8gem install bundler -v '1.17.3'
9set -ex
10