Skip to content

Instantly share code, notes, and snippets.

@buffpojken
Last active August 29, 2015 14:24
Show Gist options
  • Save buffpojken/b26df450c9e5ad389731 to your computer and use it in GitHub Desktop.
Save buffpojken/b26df450c9e5ad389731 to your computer and use it in GitHub Desktop.
class TrueClass
def !
return !super
end
end
should_be_true = (1 == 1)
if !should_be_true
puts "I'm so not true..." # => I'm so not true...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment