#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' set -vx bundle install for path in tests/*/Gemfile; do bundle install --gemfile=$path done