Last active
May 13, 2016 16:08
-
-
Save crittelmeyer/78cf2c167c963d279ae8 to your computer and use it in GitHub Desktop.
Revisions
-
crittelmeyer revised this gist
May 13, 2016 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,9 +5,8 @@ As configured in [my dotfiles](https://github.com/crittelmeyer/dotfiles/blob/mas ## Shortcuts * rubies = list installed ruby versions * gemsets = list gemsets ## Cheatsheet * rvm list known => lists available ruby versions * rvm install [x.x.x] => installs specified version * rvm use [x.x.x] => changes ruby version -
crittelmeyer revised this gist
May 13, 2016 . 2 changed files with 13 additions and 8 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +0,0 @@ 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # RVM cheatsheet/shortcuts As configured in [my dotfiles](https://github.com/crittelmeyer/dotfiles/blob/master/oh-my-zsh/plugins/rvm/rvm.plugin.zsh) ## Shortcuts * rubies = list installed ruby versions * gemsets = list gemsets * rvm list known => lists available ruby versions * rvm install [x.x.x] => installs specified version * rvm use [x.x.x] => changes ruby version -
crittelmeyer created this gist
Dec 31, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # rbenv cheat sheet * rbenv install --list => lists available ruby versions * rbenv install [x.x.x] => installs specified version * rbenv shell [x.x.x] => changes ruby version for current shell (exports RBENV_VERSION) * rbenv local [x.x.x] => changes ruby version for current project (writes to ./.ruby-version) * rbenv global [x.x.x] => changes ruby version globally (overridden by local or shell) * rbenv rehash => install shims for executables