jam-cloud/build

16 lines
192 B
Plaintext
Raw Normal View History

2012-11-18 07:39:07 +00:00
#!/bin/bash
echo "running rspec tests"
bundle update
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"