Add travis-ci integration

This commit is contained in:
James Shubin
2015-09-25 01:29:17 -04:00
parent 19a909001b
commit f789cf1403
2 changed files with 30 additions and 0 deletions

View File

@@ -5,6 +5,11 @@ set -o errexit
set -o nounset
set -o pipefail
if env | grep -q '^TRAVIS=true$'; then
echo "Travis gives wonky results here, skipping test!"
exit 0
fi
ROOT=$(dirname "${BASH_SOURCE}")/..
RUBY=`which ruby`