After installation of multiple rubies by ruby-install, how to use a specific installation of ruby? Should a ruby be accessed by absolute path, or depends on some environment path like rvm
?
How does ruby-install work?
194 Views Asked by ohho At
2
There are 2 best solutions below
2

Have you considered using rbenv which wraps around that to provide an rvm
-like interface?
Using those directly is not something I'd consider practical.
You can use postmodern's chruby to change the current Ruby:
It also supports auto-switching based on a
.ruby-version
file.