Hello everybody


I have a question: is it possible to compile ruby files into bytecode. Does ruby have something like .pyc files?

I found some discussions online about generating .exe's from ruby files, but what I want to know if it is possible to compile .rb files just like you compile .py files.


Thanks

Recommended Answers

All 4 Replies

Member Avatar for b1izzard

It is not possible to generate bytecode with normal Ruby i.e C-Ruby. But I think its possible in Jruby

It is not possible to generate bytecode with normal Ruby i.e C-Ruby. But I think its possible in Jruby

This very interesting. So, if I understood correctly, this is the same ruby programming language but they removed the standard interpreter and changed it to an interpreter that works using Java bytecode instead of ruby bytecode? So the compiled output is JVM-executable??? Which in turn means I can create Java programs using Ruby?!


If so this is nice :)


Thank you

Member Avatar for b1izzard

@windso0: I am a beginner in C-ruby and don't know much about the other and I think you are right. Also see http://en.wikipedia.org/wiki/Ruby_(programming_language)#Implementations

YEs. It seems that Ruby itself can't generate bytecode, but these other alternatives can.

Thank you all guys.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.