Skip to content

Instantly share code, notes, and snippets.

@enil
Created June 20, 2015 15:15
Show Gist options
  • Save enil/35bacf0d8b4814975f16 to your computer and use it in GitHub Desktop.
Save enil/35bacf0d8b4814975f16 to your computer and use it in GitHub Desktop.
A bit of Ruby sugar for boolean values
class Object
def to_bool
!!self
end
alias true? to_bool
def false?
!true?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment