Skip to content

Instantly share code, notes, and snippets.

@rwz
Created February 8, 2012 06:39
Show Gist options
  • Save rwz/1766091 to your computer and use it in GitHub Desktop.
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'
@pzskc383
Copy link

pzskc383 commented Feb 8, 2012

second one, double question marks scare me D:

@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