kommen (owner)

Revisions

gist: 6336 Download_button fork
public
Public Clone URL: git://gist.github.com/6336.git
helper.rb
1
2
3
4
5
6
7
  def test_wrapping_helper(&block)
    concat("<div class=\"fuuu\">", block.binding)
    yield
    concat('</div>', block.binding)
  end
 
 
RHTML
1
2
3
<% test_wrapping_helper do %>
some html
<% end %>