Add script/bootstrap

This just runs Bundler with the right options. Maybe it will do more in
the future, like update submodules.
This commit is contained in:
Adam Roben
2014-12-18 12:11:51 -05:00
parent df92ecaa55
commit b9eacfefc8
3 changed files with 13 additions and 4 deletions

8
script/bootstrap Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
bundle check --path vendor/gems > /dev/null 2>&1 || \
bundle install --local --path vendor/gems