Skip to content

Instantly share code, notes, and snippets.

@crittelmeyer
Last active May 13, 2016 16:08
Show Gist options
  • Select an option

  • Save crittelmeyer/78cf2c167c963d279ae8 to your computer and use it in GitHub Desktop.

Select an option

Save crittelmeyer/78cf2c167c963d279ae8 to your computer and use it in GitHub Desktop.

Revisions

  1. crittelmeyer revised this gist May 13, 2016. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions rvm_cheatsheet.md
    Original 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
  2. crittelmeyer revised this gist May 13, 2016. 2 changed files with 13 additions and 8 deletions.
    8 changes: 0 additions & 8 deletions rbenv_cheatsheet.md
    Original file line number Diff line number Diff line change
    @@ -1,8 +0,0 @@
    # 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
    13 changes: 13 additions & 0 deletions rvm_cheatsheet.md
    Original 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
  3. crittelmeyer created this gist Dec 31, 2015.
    8 changes: 8 additions & 0 deletions rbenv_cheatsheet.md
    Original 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