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
4
Contributors
4
Replies
3 Weeks
Discussion Span
2 Years Ago
Last Updated
5
Views
Question Answered
Related Article:The quick 'n' dirty ultra simple vBulletin SEO hack
is a Web Development discussion thread by Dani that has 139 replies, was last updated 1 year ago and has been tagged with the keywords: script-configuration.
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?!
@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