#!/bin/sh

set -e

command -v bundle >/dev/null 2>&1 || { echo >&2 "Bundler required but not found: gem install bundler"; exit 1; }

echo "===> Bundling"
bundle install --quiet "$@"
