Install a gem for all rubies in your system (RVM)
If you want a certain gem to be available in all your rubies (particularly common with gems which expose a CLI) use this command to install it for all ruby versions installed with RVM.
for x in $(rvm list strings); do rvm use $x@global && gem install hitch; done
(Replace hitch
with your desired gem)