I find it difficult to understand RVM for each project. I installed RVM and 1.9.2 and 1.8.7 rubies, according to http://beginrescueend.com/interpreters/ruby/ , and when I want to start a new project, I was
cd ~/Code rvm use 1.9.2 rvm gemset create test1 rvm gemset use test1 gem install rails
But it takes a lot of time! (rail mounting). Then I rails new test1; cd test1 rails new test1; cd test1
I am really not sure about the correct workflow. If I create a new application for testing, I do not want to wait until the rails are installed.
It seems from http://beginrescueend.com/gemsets/basics/ that I can create gemset rails, but how can I create gemset for each project?
Edit:
If I am going to use several versions of ruby ββ/ rails, should I create a gemset, say 1.9.2@rails313 , then rails new blah , put 1.9.2@rails313 in blah/.rvmrc , and if I need later, create a blah gemset ?
source share