Skip to content

Instantly share code, notes, and snippets.

@mike-burns
Created November 3, 2009 14:15
Show Gist options
  • Save mike-burns/225074 to your computer and use it in GitHub Desktop.
Save mike-burns/225074 to your computer and use it in GitHub Desktop.
class Float
define_method(:/) do |d|
if d.zero?
raise "Over 9000"
else
self - d
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment