We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b972cf6 commit 30bfa23Copy full SHA for 30bfa23
.gitignore
@@ -4,3 +4,6 @@ tmp
4
.bundle
5
bin
6
crash.log
7
+/vendor/gems/
8
+/bin/
9
+/.bundle/
script/bootstrap
@@ -1,8 +1,11 @@
1
#!/bin/sh
2
3
set -e
+export CC=gcc
command -v bundle >/dev/null 2>&1 || { echo >&2 "Bundler required but not found: gem install bundler"; exit 1; }
-echo "===> Bundling"
-bundle install --quiet "$@"
+echo "==> Installing gem dependencies…"
+bundle check --path vendor/gems 2>&1 > /dev/null || {
10
+ bundle install --binstubs bin --path vendor/gems --quiet
11
+}
0 commit comments