Hello!
I need ERB (Ruby's templating system) for templating of non-HTML files.
(Instead, I want to use it for source files such as .java, .cs, ...)
How do I "execute" Ruby templates from command line?
|
|
Hello! I need ERB (Ruby's templating system) for templating of non-HTML files. How do I "execute" Ruby templates from command line?
|
|||
|
|
|
|
You should have everything you need in your ruby/bin directory. On my (WinXP, Ruby 1.8.6) system, I have
so (EDIT: windows has erb.bat and just plain "erb". The .bat file is just a wrapper for erb, which I guess should make the same command work pretty much the same on any OS) See the prag prog book discussion (starts about half-way down the page). Note also that Jack Herrington wrote a whole book about code generation that uses Ruby/ERB. |
||||
|
|
|
Write a ruby script that does it. The API documentation is here: http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/ For example:
(Where binding is a binding with the @vars that the template needs.) |
||
|
|
|
|
Another option would be to use ruby -e, since ERB itslef is so simple. Something like:
However, I assume you have a context you want to render the template in. How are you expecting to get that context? As an example, check out:
which will print out "hello world", using the top-level, where you defined the |
||
|
|
|
|
I tried to comment on this, but comments link not available. I'm using this:
From the posting above: and I found what I think it might be a problem: I'm creating DOS BATCH files like:
And I found weird thing problem - I get this when I run with the code above:
I tried the following, and got round my particular problem - not sure if this is the right answer for everybody ...
|
|||
|
|