Skip to content

Instantly share code, notes, and snippets.

@brandon-beacher
Created September 16, 2011 22:33
Show Gist options
  • Save brandon-beacher/1223318 to your computer and use it in GitHub Desktop.
Save brandon-beacher/1223318 to your computer and use it in GitHub Desktop.
class FalseClass
def affirmative?
false
end
end
class NilClass
def affirmative?
false
end
end
class String
def affirmative?
["true", "t", "yes", "y", "1"].include? self.downcase
end
end
class TrueClass
def affirmative?
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment