Skip to content

Instantly share code, notes, and snippets.

@mehdi-farsi
Created August 24, 2018 13:57
Show Gist options
  • Save mehdi-farsi/93121e05862f77c6dfe2435d9491bc9b to your computer and use it in GitHub Desktop.
Save mehdi-farsi/93121e05862f77c6dfe2435d9491bc9b to your computer and use it in GitHub Desktop.
def optional_block
yield if block_given?
end
optional_block # => nil
optional_block { puts 'optional block' } # => optional block
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment