SpringFlowers AutumnMoon wrote:
it seems that RoR doesn't use erb or eRuby to generate its output for
rhtml?the program erb and the description of eRuby at
both said that
<% print "foo bar" %> or <% puts "hello" %>
They go into STDOUT, hence out your program. They don't put anything
into the returned string. Only <%= ... %> does that.
So, yes RoR definitely uses eRB.