With JRuby, you can make use of Java libraries in Ruby. Is there the reverse for using Ruby libraries in Java?

Specifically I want to write an Eclipse plugin and I need to use a bunch of legacy functions in this library written in Ruby.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You might be looking for generating Java .class or .jar files from JRuby/Ruby

You can find the topic on the JRuby wiki: https://github.com/jruby/jruby/wiki/StandaloneJarsAndClasses

Doing that I believe you can do what you need.

link|improve this answer
The exact thing I needed was called jrubyc. Thanks – alexloh Sep 2 '11 at 15:31
feedback

There are some instructions on embedding JRuby (in Java) at https://github.com/jruby/jruby/wiki/RedBridge

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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