What's the best way of accessing a DRb object (e.g. Ruby Queue) from Scala (and Java)?
- by Tom Morris
I have built a variety of little scripts using Ruby's very simple Queue class, and share the Queue between Ruby and JRuby processes using DRb. It would be nice to be able to access these from Scala (and maybe Java) using JRuby.
I've put together something Scala and the JSR-223 interface to access jruby-complete.jar.
import javax.script._
class…