I have used this pattern for a number of helpers in rails 2, but it isn't working the same in rails 3. My goal is to have a helper method generate some html tags with content nested inside. Here is a basic example of what I'm trying to get:
<div class="box">
my content
</div>
In rails 2 I do it like this:
inside my layout file I call the helper method:
<% box_wrapper do %>
<%= yield -%>
<% end %>
The helper method is defined like this:
def box_wrapper
concat <<-EOF.html_safe
<div class="box">
EOF
yield if block_given?
concat <<-EOF.html_safe
</div>
EOF
end
But in rails 3 when the view gets rendered it outputs my entire page and then inside the box_wrapper it renders all of the page content a 2nd time.
I think I'm missing something obvious with how to use helpers and yields. Any ideas?