From: "Stephan Kämper" Date: 2005-08-18T19:46:15+09:00 Subject: Re: Erb on the Herb? Lyndon Samson wrote: > There seems to be some issue with the binding in ERB, any ideas? > I want you to know that my team will keep working on the issues, > especially: > > <%# ignore numerous minor requests -- focus on priorities %> > % priorities.each do |priority| This line -^ is just some other output of ERB - there are no '<%' ... '%>' pairs... > * <%= priority %> > % end Would this do it? <% priorities.each do |priority| %> * <%= priority %> <% end %> Hope that helped Happy rubying Stephan