Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to have rvm know which gemset it should be using while navigating under a certain directory, much in the same way you can have git the current branch's information just by navigating under that directory?

I understand how git works that way since each directory has its own .git directory in the root, but didn't know if it was possible since .rvm is more of a user-wide configuration. Or perhaps the answer is to make a .rvm file within each directory?

share|improve this question

4 Answers

up vote 17 down vote accepted

Create a .rvmrc file in each project/branch with contents similar to this:

rvm gemset use xxxx

Save it. Next time you cd into that folder, you'll probably get a security prompt from RVM to make sure you want to use that .rvmrc. After accepting, you'll see "Now using gemset 'xxxx'" every time you navigate into that folder.

share|improve this answer
Ahh, wonderful, thanks! – joeellis Feb 28 '11 at 15:58
yeah, I did it, but it doesn't work fine - every time I enter the project folder I got notification (green colour in terminal) that this project is using x.x.x version of ruby, but when I want do something I have errors (different range errors: from active record ones to used gems etc.) - but when I type rvm use x.x.x (same version like in after enter project folder notification) everything works fine - do you know how to solve this? :/ – ofcapl May 28 '12 at 16:44

I find the easiest way to achieve this is to navigate to the project folder and then use the following command:

rvm --rvmrc --create <ruby>@<desired-gemset-name>

e.g. rvm --rvmrc --create 1.9.2-p290@testing_gemset

In one stroke, RVM will create the .rvmrc file, populate it, install the correct ruby version - if necessary - and (usually) switch to the correct ruby version and gemset. I say usually because I find that I sometimes have to cd . after performing that command to get RVM to pick up the changes.

share|improve this answer
this worked for me, the current answer didn't – Khaled Sep 17 '12 at 11:24

It is possible: http://rvm.io/workflow/rvmrc/:

rvm use ruby@gemset
share|improve this answer

For others visiting this, there is a new way to do this, without having to allow arbitrary shell script to be executed in a .rvmrc file.

Create a .ruby-gemset file with just the gemset name in.

gemset

Need an up to date version of rvm for this to work.

You can also specify the ruby version by creating a .ruby-version file with just the ruby version:

1.9.3
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.