2012-11-18 07:39:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2012-11-18 08:11:15 +00:00
|
|
|
echo "updating dependencies"
|
2013-01-06 21:13:01 +00:00
|
|
|
bundle install
|
2012-11-18 07:41:37 +00:00
|
|
|
bundle update
|
2012-11-18 08:11:15 +00:00
|
|
|
echo "running rspec tests"
|
2012-11-18 07:39:07 +00:00
|
|
|
bundle exec rspec
|
|
|
|
|
|
|
|
|
|
if [ "$?" = "0" ]; then
|
|
|
|
|
echo "tests completed"
|
|
|
|
|
else
|
|
|
|
|
echo "tests failed."
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "build complete"
|
|
|
|
|
|