Skip to content

Instantly share code, notes, and snippets.

@tsevdos
Created September 13, 2015 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsevdos/785589e80ca881c642d5 to your computer and use it in GitHub Desktop.
Save tsevdos/785589e80ca881c642d5 to your computer and use it in GitHub Desktop.
Ruby tips : block_given? on yields
def yo
if block_given?
yield
else
puts "No block :-("
end
end
yo # => No block :-(
yo { puts "Yo man" } # => Yo man
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment