vote up 1 vote down star

I have JRuby and Ruby (MRI) installed. It seems that I need to install gems twice - once for each of these platforms. Is this necessary or am I doing it wrong? After I installed the rails gem for MRI, should I have pointed JRuby to it, or was it necessary for me to also call: "jruby -S gem install rails"

flag

3 Answers

vote up 2 vote down check

If you set GEM_HOME you can share your gem installations.

link|flag
vote up 1 vote down

Some gems target specific platforms, e.g. Mongrel (there's a MRI one and a JRuby one). Also, JRuby cannot use gems that have native extensions (i.e. C code) unless they use the FFI (which most do not - yet).

Personally I have separate gem repos for MRI and JRuby. The little bit of extra hassle is worth the peace of mind when trying to track down a problem.

It's pretty easy to see what each repo has installed:

jruby -S gem list --local

vs.

gem list --local

You could even write a ruby script to sync one gem list to the other, but you'd have to be careful about platform specific gems....

link|flag
vote up 3 vote down

You need to install gems for each different install of ruby that you have.

link|flag

Your Answer

Get an OpenID
or

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