Hi,
I want to make a helper like the following.
def my_div some_options, &block # How do I print the result of the block? end
Sam
|
1
|
Hi, I want to make a helper like the following. def my_div some_options, &block # How do I print the result of the block? end Sam
|
|||
|
|
|
|
You should use CaptureHelper.
Use capture + concat if you need to concat the output. Use capture if you need to capture and then reuse the content. If your block doesn't explicitely use <%=, then you MUST call concat (preferred way). This is an example of a method that hides the content if the user it not an admin.
|
||
|
|
|
|
http://www.rubycentral.com/book/tut_containers.html The yield statement will return the result of the block passed. So if you wanted to print (console?) def my_div &block yield end my_div { puts "Something" } Would output "Something" But: What is the idea of your method? Outputting a DIV? |
|||
|