2012-11-18 07:39:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2012-11-18 08:11:15 +00:00
|
|
|
echo "updating dependencies"
|
2014-02-02 20:03:31 +00:00
|
|
|
bundle install --path vendor/bundle
|
2013-01-06 21:14:38 +00:00
|
|
|
|
2014-02-20 22:23:44 +00:00
|
|
|
if [ -z $SKIP_TESTS ]; then
|
|
|
|
|
echo "running rspec tests"
|
|
|
|
|
bundle exec rspec
|
2012-11-18 07:39:07 +00:00
|
|
|
|
2014-02-20 22:23:44 +00:00
|
|
|
if [ "$?" = "0" ]; then
|
2012-11-18 07:39:07 +00:00
|
|
|
echo "tests completed"
|
2014-02-20 22:23:44 +00:00
|
|
|
else
|
2012-11-18 07:39:07 +00:00
|
|
|
echo "tests failed."
|
|
|
|
|
exit 1
|
2014-02-20 22:23:44 +00:00
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "skipping tests"
|
2012-11-18 07:39:07 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "build complete"
|
|
|
|
|
|