[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Help needed with this ERB code

voipfc

7/21/2007 8:02:00 PM

Is there any code in this ERB snippet that causes text after the EOF
to be included in the template.

Unless my understanding of ERB is inadequate there has to be some bug in it.
It has me at my wit's end.

=============

template = ERB.new <<-EOF

# rsync push mode

#rsync_push_command check

# <%= rsync_push_command %>

# rsync_forced_command
# <%= rsync_forced_command %>
#

EOF

some program code here

=====
After execution the text "some program code here" appears in the
template's output

Are there some circumstances under which ERB goes haywire?

Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax for
when the text is on multiple lines. - Frank

1 Answer

voipfc

7/21/2007 8:19:00 PM

0

On 21/07/07, Frank Church <voipfc@googlemail.com> wrote:
> Is there any code in this ERB snippet that causes text after the EOF
> to be included in the template.
>
> Unless my understanding of ERB is inadequate there has to be some bug in it.
> It has me at my wit's end.
>
> =============
>
> template = ERB.new <<-EOF
>
> # rsync push mode
>
> #rsync_push_command check
>
> # <%= rsync_push_command %>
>
> # rsync_forced_command
> # <%= rsync_forced_command %>
> #
>
> EOF
>
> some program code here
>
> =====
> After execution the text "some program code here" appears in the
> template's output
>
> Are there some circumstances under which ERB goes haywire?
>
> Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax for
> when the text is on multiple lines. - Frank
>


Is there some way the ERB internal stack or whatever can be reset
between calls to ensure that there is nothing left in there to cause
errors.