Writing erb rhtml output to an external file

G

Glenn

[Note: parts of this message were removed to make it a legal post.]

Hi,

I am trying to write the output of an erb run to an external output file. I have an object with some instance variables in it, and a string of html and the instance variables (in the erb style with <% and <%=).

I require erb and create a local variable that's a erb object, then call run on that object, like this:

require "erb"

template = %q{
some html in here

}.gsub(/^ /, '')

f = File.new('myfile.rhtml', 'w')
rhtml = ERB.new(template)
rhtml.run(o.get_binding)

I just can't figure out how to direct the result into the f file object. Any suggestions?

I read a lot of the documentation but did not see (or understand) a reference to this.

Thanks!
 
F

F. Senault

Le 10 janvier 2009 à 15:01, Glenn a écrit :
f = File.new('myfile.rhtml', 'w')
rhtml = ERB.new(template)
rhtml.run(o.get_binding)

I just can't figure out how to direct the result into the f
file object. Any suggestions?

You have a 'result' method :

File.open('myfile.rhtml, 'w') do |f|
f.puts ERB.new(template).result(o.get_binding)
end

Note too that the block form of File is usually preferred, if only
because the handles are automatically closed at the end of the block
without the need of a call to close.

Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,022
Latest member
MaybelleMa

Latest Threads

Top