#!/usr/bin/env bash

: ${RUN_IN_DOCKER:='0'}

if [ "$RUN_IN_DOCKER" == '1' ]; then
  bundle exec rake "docker:run[$*]"
else
  bundle exec rake test $*
fi
