2014-02-01 07:31:31 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-05-31 04:55:38 +08:00
|
|
|
bundle check || bundle install
|
2014-03-28 23:55:00 +08:00
|
|
|
bundle exec rspec spec
|
2016-01-19 00:47:35 +08:00
|
|
|
result=$?
|
2014-02-07 13:21:04 +08:00
|
|
|
bundle exec rake refresh_db
|
2014-02-24 17:31:21 +08:00
|
|
|
exit $result
|