From: mdiam Date: 2008-06-08T00:03:51+09:00 Subject: Re: Desktop multi-plataform ruby app (jruby) On Jun 7, 2:48 pm, Victor Reyes wrote: > I guess I would have to uninstall Ruby. That's not a big deal! No, jruby executable is call jruby! Just unarchive the last jruby distrib and add the bin/jruby to your PATH. Then you can use either old ruby or new jruby as you like. You also can start your jruby script with the firt line: #!/usr/bin/env jruby as any standard unix script. If you alreadu have some (non gui) ruby script, you can just replace "ruby" by "jruby" is the first line and see by your self the performance. (but jruby is still a litle slower than ruby at startup time, because of the JVM) - Maurice