1#!/bin/sh 2 3set -e 4 5cd "$(dirname "$0")/.." 6 7if [ -z "$SKIP_COMPILE" ]; then 8 bin/compile 9fi 10bundle exec rspec "$@"