Syntax for putting a block on a single line - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:23:32Z http://stackoverflow.com/feeds/question/255714 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line 3 Syntax for putting a block on a single line Cameron Booth 2008-11-01T16:04:21Z 2008-11-02T19:36:33Z <p>So I've got a Ruby method like this:</p> <pre><code>def something(variable, &amp;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#255732 0 Answer by bseanvt for Syntax for putting a block on a single line bseanvt 2008-11-01T16:22:22Z 2008-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 # =&gt; "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#255791 12 Answer by Romulo A. Ceccon for Syntax for putting a block on a single line Romulo A. Ceccon 2008-11-01T17:20:17Z 2008-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#256607 0 Answer by Ryan Bigg for Syntax for putting a block on a single line Ryan Bigg 2008-11-02T06:33:46Z 2008-11-02T06:33:46Z <p>Uh, what about:</p> <pre><code>&gt;&gt; def something(arg1 , &amp;block) &gt;&gt; yield block &gt;&gt; end =&gt; nil &gt;&gt; def do_it &gt;&gt; puts "Doing it!" &gt;&gt; end =&gt; nil &gt;&gt; something('hello') { do_it } "Doing it!" =&gt; nil </code></pre>