I have a legacy Ruby command line tool that uses (user supplied) ERB templates to format data. I am required to rewrite this tool in Java but I need to avoid having everyone rewrite their ERB templates in a different template language.

I think I can do this with embedded JRuby but I have never used it.

Are there any good examples or reference for using ERB from Java apps?

link|improve this question

60% accept rate
feedback

1 Answer

Here you can see at listing 6 how to call ruby from java with jruby.

And to use ERB is very easy :D

require 'erb'

# `binding` returns all variables declared in
# this scope, so they can be used in templates
#
ERB.new(File.read('file/path')).result(binding)
link|improve this answer
ok, jruby is great but now I have to figure out how to get ERB into the JAR :-( require "erb" fails with "no such file to load -- erb" – evil tabby cat Sep 23 '11 at 13:25
Use the jruby-complete jar, that comes with the gem pre-installed – joejag Jan 27 at 13:53
feedback

Your Answer

 
or
required, but never shown

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