Skip to content

Instantly share code, notes, and snippets.

@fervisa
Created October 19, 2015 23:54
Show Gist options
  • Save fervisa/9e1b4f9362d89c82d6ae to your computer and use it in GitHub Desktop.
Save fervisa/9e1b4f9362d89c82d6ae to your computer and use it in GitHub Desktop.
Navigates into every directory and install all required gems
for d in ./*/ ; do (cd "$d" && gem install bundler && bundle install); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment