Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created January 28, 2013 03:43
Show Gist options
  • Select an option

  • Save yangsu/4652844 to your computer and use it in GitHub Desktop.

Select an option

Save yangsu/4652844 to your computer and use it in GitHub Desktop.
Ruby Named Parameters
def tell_the_truth(options={})
if options[:profession] == :lawyer
'it could be believed that this is almost certainly not false.'
else
true
end
end
tell_the_truth
# => true
tell_the_truth( :profession => :lawyer )
# => "it could be believed that this is almost certainly not false.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment