jam-cloud/build

18 lines
236 B
Plaintext
Raw Normal View History

2012-11-18 07:39:07 +00:00
#!/bin/bash
2012-11-18 08:11:15 +00:00
echo "updating dependencies"
bundle install
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"