Syntax for putting a block on a single line - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T02:23:32Zhttp://stackoverflow.com/feeds/question/255714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line3Syntax for putting a block on a single lineCameron Booth2008-11-01T16:04:21Z2008-11-02T19:36:33Z
<p>So I've got a Ruby method like this:</p>
<pre><code>def something(variable, &block)
....
end
</code></pre>
<p>And I want to call it like this:</p>
<pre><code>something 'hello' { do_it }
</code></pre>
<p>Except that isn't working for me, I'm getting a syntax error. If I do this instead, it works:</p>
<pre><code>something 'hello' do
do_it
end
</code></pre>
<p>Except there I'm kind of missing the nice look of it being on one line.</p>
<p>I can see why this is happening, as it could look like it's a hash being passed as a second variable, but without a comma in between the variables...but I assume that there must be a way to deal with this that I'm missing. Is there?</p>
http://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line/255732#2557320Answer by bseanvt for Syntax for putting a block on a single linebseanvt2008-11-01T16:22:22Z2008-11-01T16:22:22Z<p>If you want "def something" to to accept a block, you need to yield data to that block. For example: </p>
<pre><code>#to uppercase string
def something(my_input)
yield my_input.upcase
end
# => "HELLO WORLD"
something("hello world") { |i| puts i}
</code></pre>
http://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line/255791#25579112Answer by Romulo A. Ceccon for Syntax for putting a block on a single lineRomulo A. Ceccon2008-11-01T17:20:17Z2008-11-01T17:20:17Z<p>You need to parenthesize your argument:</p>
<pre><code>something('hello') { do_it }
</code></pre>
<p>That should work.</p>
http://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line/256607#2566070Answer by Ryan Bigg for Syntax for putting a block on a single lineRyan Bigg2008-11-02T06:33:46Z2008-11-02T06:33:46Z<p>Uh, what about:</p>
<pre><code>>> def something(arg1 , &block)
>> yield block
>> end
=> nil
>> def do_it
>> puts "Doing it!"
>> end
=> nil
>> something('hello') { do_it }
"Doing it!"
=> nil
</code></pre>