Files
linguist/script/bootstrap
Adam Roben b9eacfefc8 Add script/bootstrap
This just runs Bundler with the right options. Maybe it will do more in
the future, like update submodules.
2014-12-18 12:13:32 -05:00

9 lines
144 B
Bash
Executable File

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