Skip to content

Instantly share code, notes, and snippets.

@BGuimberteau
Last active December 22, 2015 19:49
Show Gist options
  • Save BGuimberteau/6521949 to your computer and use it in GitHub Desktop.
Save BGuimberteau/6521949 to your computer and use it in GitHub Desktop.
RVM basic usage
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