Created
September 9, 2011 04:29
-
-
Save williamn/1205500 to your computer and use it in GitHub Desktop.
Installing a gem in all your global RVM gemsets
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
# 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