Created
September 16, 2010 10:54
-
-
Save timurvafin/582246 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
module ApplicationHelper | |
def my_helper(message) | |
with_output_buffer { yield(message) } | |
end | |
end | |
<%= my_helper('test') do |value| %> | |
<%= value %> | |
<% end %> | |
# Renders once |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment