Skip to content

Instantly share code, notes, and snippets.

@chad
Created September 9, 2010 22:11
Show Gist options
  • Save chad/572697 to your computer and use it in GitHub Desktop.
Save chad/572697 to your computer and use it in GitHub Desktop.
module A
overlay_module Integer, MyIntegerCrap
class Blah
def do_it
puts 1.day
end
end
end
A::Blah.new.do_it # => prints the result of 1.day
1.day # => raises an exception
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment