Skip to content

Instantly share code, notes, and snippets.

@venkatd
Created July 12, 2012 01:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save venkatd/3094937 to your computer and use it in GitHub Desktop.
Save venkatd/3094937 to your computer and use it in GitHub Desktop.
New rails project with RVM
reate and use the new RVM gemset
$ rvm use --create 1.9.3@awesome_rails_project
# install rails into the blank gemset
$ gem install rails
# generate the new rails project
$ rails new awesome_rails_project
# go into the new project directory and create an .rvmrc for the gemset
$ cd awesome_rails_project
$ rvm --rvmrc 1.9.3@awesome_rails_project
# verify the rvmrc
$ cd ..; cd -
@venkatd
Copy link
Author

venkatd commented Jul 12, 2012

Stolen from rakeroutes.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment