On Dec 2, 8:03 pm, Kenneth McDonald <[EMAIL PROTECTED]>
wrote:
> I have a situation where it would be useful to generate ERB directly  
> from Rails code, rather than taking it from a file. Is this possible?  
> If so, how would one go about it?
>
Well there's render :inline if you're in a controller or you can just
use erb directly

greeting = world
ERB.new("hello <%= greeting %>").result binding #=> "hello world"

Fred
> Thanks,
> Ken McDonald
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to