Created
August 20, 2008 07:58
-
-
Save kommen/6336 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% test_wrapping_helper do %> | |
some html | |
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_wrapping_helper(&block) | |
concat("<div class=\"fuuu\">", block.binding) | |
yield | |
concat('</div>', block.binding) | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment