Adds 'rvm use 1.9.2' to rvm setup, fixes #174

This commit is contained in:
Frederic Hemberger 2011-09-24 12:16:47 +02:00
parent 560f54dba5
commit 8d90ac80c3
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ You can't use both rbenv and RVM on the same system, so choose one.
If you don't have RVM yet, [Install RVM](/docs/setup/rvm) and then install Ruby 1.9.2.
```sh
rvm install 1.9.2
rvm install 1.9.2 && rvm use 1.9.2
```
### Using rbenv

View File

@ -29,6 +29,6 @@ source ~/.zshrc
Install Ruby 1.9.2 and ensure RVM has the latest RubyGems.
```sh
rvm install 1.9.2
rvm install 1.9.2 && rvm use 1.9.2
rvm rubygems latest
```