Skip to content

Instantly share code, notes, and snippets.

@calebcauthon
Last active August 29, 2015 14:08
Show Gist options
  • Save calebcauthon/a0c1a46c9840cc1631fd to your computer and use it in GitHub Desktop.
Save calebcauthon/a0c1a46c9840cc1631fd to your computer and use it in GitHub Desktop.
class NilClass
def coerce arg
if arg.class == Fixnum
[arg, 0]
end
end
def - arg
0 - arg
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment