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.

I want to use per project gemsets. But I don't want to specify the ruby version.

Something like:

#.rvmrc
   rvm --create use  "@project"

But this give me the following error:

error: Unknown ruby interpreter string component: 'ruby 1.9.2 p136'
info: Now using system ruby.

Is there a way to do what i want?

share|improve this question

1 Answer

up vote 1 down vote accepted

I'm not sure if that's the case but perhaps rvm --create use doesn't support params without ruby version.

#.rvmrc
rvm gemset create "project"
rvm gemset use "project"

I didn't check this, just saw at: http://rvm.beginrescueend.com/gemsets/creating/

share|improve this answer
Notice that my intention is to put that code in a .rvmrc file, so that a gemset is create and/or loaded automatically when I enter the directory. I tried you code but it just create the gemset, it does not load it. – Nerian Jan 26 '11 at 16:14
This works: rvm gemset create "akephalos" rvm gemset use "akephalos" – Nerian Jan 26 '11 at 16:15
Right, didn't notice that #.rvmrc. I'll edit my answer. – Kamil Sarna Jan 26 '11 at 16:25

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.