Skip to content

Instantly share code, notes, and snippets.

@luke0x
Created January 26, 2009 17:43
Show Gist options
  • Save luke0x/52881 to your computer and use it in GitHub Desktop.
Save luke0x/52881 to your computer and use it in GitHub Desktop.
def conditional_block(do_block, method, *args, &block)
do_block ? send(method, args, &block) : block.call
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment