Is it possible to compile all .rb source files files (including the configuration source file files) of Ruby on Rails to .class files using JRuby, pack it into a .war file and deploy to JBoss or another Java appserver?

link|improve this question

64% accept rate
Duplicate of stackoverflow.com/questions/147671/… – Chris Ledet Sep 21 '11 at 17:13
It's not a duplicate... I don't want to simply pack my Ruby files into a .war and deploy to a Java appserver, I want to also compile my .rb files to .class files - I want to hide my ruby source code. – razenha Sep 22 '11 at 17:16
feedback

2 Answers

up vote 2 down vote accepted

Check out warbler for this purpose.

From the main page:

Warbler is a gem that makes a .war file out of a Rails, Merb, or Rack-based application. The intent is to provide a minimal, flexible, ruby-like way to bundle all your application files for deployment to a Java application server.

link|improve this answer
I don't want to simply pack my Ruby files into a .war and deploy to a Java appserver, I want to also compile my .rb files to .class files - I want to hide my ruby source code. – razenha Sep 22 '11 at 17:16
1  
warbler will do all you are asking including making .class files. – ffoeg Dec 11 '11 at 3:15
feedback

the following command should compile all .rb to .class

warble compiled

in the warble.rb file you can uncomment the line to compile only some Ruby files

# config.compiled_ruby_files = FileList['app/**/*.rb']
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.