How do I specify for what version of ruby I would like to install a gem in?

link|improve this question

74% accept rate
1  
This is probably related to this question: stackoverflow.com/questions/5575981/nokogiri-segmentation-fault – Ryan Bigg Apr 7 '11 at 6:13
feedback

4 Answers

Are you using RVM? If so, just go to you ruby:

rvm 1.9.2-head

then do

gem install whatever
link|improve this answer
feedback

use RVM. This is a good tutorial.

Do focus on creating gemset

link|improve this answer
feedback

You need to use RVM (http://rvm.beginrescueend.com/), that way you can manage what gems are installed for what ruby/rails.

link|improve this answer
feedback

Are you not using RVM?

$> rvm use 1.9.2 
$> gem install <gem name>

The gem will be installed only for Ruby 1.9.2

link|improve this answer
wow .... this is fast ... – wizztjh Apr 7 '11 at 5:58
I am using rvm but when trying to install nokogiri it seems to think that it is installing for 1.8.7 and I am getting seg fault errors. /.rvm/gems/ruby-1.9.2-p180/gems/nokogiri-1.4.4/lib/nokogiri/nokogiri.bundle: [BUG] Segmentation fault ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0] Abort trap I thought reinstall the gem would work but nothing changed. – Kevin Apr 7 '11 at 5:59
feedback

Your Answer

 
or
required, but never shown

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