Skip to content

Instantly share code, notes, and snippets.

@softwaregravy
Created September 11, 2011 22:11
Show Gist options
  • Save softwaregravy/1210199 to your computer and use it in GitHub Desktop.
Save softwaregravy/1210199 to your computer and use it in GitHub Desktop.
Options of Nil and Fasle
# The way I basically always check
def my_method(options = {})
if options[:key]
# do something using the option here
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment