Created
December 9, 2016 19:10
-
-
Save andxyz/751a66c37f9cb726c3c82fbd06a7f84b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
set -x | |
git fetch --all --prune | |
gfind . -iname 'Gemfile' -prune -printf "%h\n" | sort --unique | \ | |
gxargs -n1 -P4 -L1 \ | |
bash -c 'echo "Installing gems for $0"; cd "$0"; bundle check || bundle install' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment