Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created April 7, 2014 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igaiga/10016377 to your computer and use it in GitHub Desktop.
Save igaiga/10016377 to your computer and use it in GitHub Desktop.
class String
def true?
downcase == "true"
end
def false?
!true?
end
def to_boolean
true?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment