diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rwxr-xr-x | bin/setup | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -1 +1,2 @@ +.bundle tmp diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..4454ee8 --- /dev/null +++ b/bin/setup @@ -0,0 +1,9 @@ +#!/bin/bash -l + +set -e + +cd "$(dirname "$0")/.." + +bundle config --local path vendor +bundle config --local jobs "$(nproc)" +bundle install |
