Skip to content

Instantly share code, notes, and snippets.

@rwz
Created February 8, 2012 06:39
Show Gist options
  • Select an option

  • Save rwz/1766091 to your computer and use it in GitHub Desktop.

Select an option

Save rwz/1766091 to your computer and use it in GitHub Desktop.
A little rubyquiz
my_object.bool_method?? 'yes' : 'no'
# or
my_object.bool_method? ? 'yes' : 'no'
# or
(my_object.bool_method?) ? 'yes' : 'no'
@spinogrizz
Copy link

"yes" if object.bool_value else "no"

:-P

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment