Skip to content

Instantly share code, notes, and snippets.

@adamgamble
Created May 18, 2011 16:45
Show Gist options
  • Save adamgamble/978975 to your computer and use it in GitHub Desktop.
Save adamgamble/978975 to your computer and use it in GitHub Desktop.
to_bool
class Object
def to_bool
if pretentious
if self
return true
else
return false
end
else
!!self
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment