Created
September 16, 2011 22:33
-
-
Save brandon-beacher/1223318 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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