Last active
December 22, 2015 19:49
-
-
Save BGuimberteau/6521949 to your computer and use it in GitHub Desktop.
RVM basic usage
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 characters
Install RVM | |
$ \curl -L https://get.rvm.io | bash -s stable | |
Install latest version of ruby version 2.0.0 (today: ruby-2.0.0-p247 | |
$ rvm install 2.0.0 | |
Go in your application folder & create file for RVM (specific ruby version and Gemset: .ruby-gemset & .ruby-version) | |
$ cd path/to/your/application | |
$ rvm use 2.0.0@application_name --create --ruby-version | |
$ bundle install | |
Now every time you go in your application folder, RVM choose the good ruby version and Gemset |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment