#! /bin/bash

if [[ "$TRAVIS" == "true" ]]; then
  echo "We're on Travis! Installing to vendor."
  time bundle install --path vendor
else
  bundle install --system
fi
