Skip to content

Instantly share code, notes, and snippets.

@williamn
Created September 9, 2011 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save williamn/1205500 to your computer and use it in GitHub Desktop.
Save williamn/1205500 to your computer and use it in GitHub Desktop.
Installing a gem in all your global RVM gemsets
# from http://blog.siyelo.com/installing-a-gem-in-all-your-global-rvm-gemse
for x in $(rvm list strings); do rvm use $x@global && gem install <RAD DEVELOPMENT GEM NAME>; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment