RVM: Difference between revisions
Jump to navigation
Jump to search
Created page with 'Ruby Version Manager https://rvm.io// To create a new gemset: <pre> rvm ruby-1.9.3-p194@rails2314 --create </pre> To switch to a particular gemset: <pre> rvm gemset use rails23…' |
No edit summary |
||
Line 12: | Line 12: | ||
</pre> | </pre> | ||
Now you can use <code>gem</code> to install the needed gems. | Now you can use <code>gem</code> to install the needed gems. | ||
May need to source <code>/etc/profile.d/rvm.sh</code> to get things working. |
Revision as of 20:34, 6 July 2012
Ruby Version Manager
To create a new gemset:
rvm ruby-1.9.3-p194@rails2314 --create
To switch to a particular gemset:
rvm gemset use rails2314
Now you can use gem
to install the needed gems.
May need to source /etc/profile.d/rvm.sh
to get things working.