1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/ruby/set-rvm-default-ruby.md
2015-11-05 13:20:07 -06:00

10 lines
232 B
Markdown

# Set RVM Default Ruby
The default version of Ruby can be set for RVM using the `--default` flag.
For instance, to set the default version of Ruby to `ruby-2.2.3`, use the
following command:
```
$ rvm --default use ruby-2.2.3
```