#!/usr/bin/env bash

# shellcheck disable=SC2068
# SC2068: Double quote array expansions to avoid re-splitting elements.

if [[ $DISABLE_SPRING ]]; then
  bundle exec rspec $@
else
  bundle exec spring rspec $@
fi
