How do I release ruby program without the source?

Can I use ruby 1.9 and compile it to byte code and release the byte
code?

Regards,
Shin Guey

On Tue, 29 Apr 2008 02:06:35 -0500, Shin guey Wong wrote:

Can I use ruby 1.9 and compile it to byte code and release the byte
code?

Regards,
Shin Guey

You can do it in JRuby, using jrubyc. This creates a single class file
containing the whole script. The JRuby classes cannot be used in Java
code, though I hear a compiler that can do this is in the long term plan
for JRuby.

–Ken