Skip to content

Instantly share code, notes, and snippets.

@ehuynh
Created April 24, 2012 03:39
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 ehuynh/2476216 to your computer and use it in GitHub Desktop.
Save ehuynh/2476216 to your computer and use it in GitHub Desktop.
RVM Commands

Rubies

  • list rubies available rvm list rubies

  • use ruby rvm use 1.9.3

Gemsets

  • create a rvmrc project file for project using ruby 1.9.3 rvm --rvmrc --create 1.9.3@projectname

  • list all the gem sets and indicates which one is currently in use rvm gemset list

  • use a gemset rvm gemset use mygemset

  • name of current gemset rvm gemset name

  • delete a gemset rvm gemset delete mygemset

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment