Skip to content

Instantly share code, notes, and snippets.

@citizen428
Forked from fronx/reincarnation.rb
Created January 4, 2010 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save citizen428/268832 to your computer and use it in GitHub Desktop.
Save citizen428/268832 to your computer and use it in GitHub Desktop.
# Reincarnation for classes
class Class
def reincarnate
buried = Object.__send__(:remove_const, self.name)
Object.const_set(self.name, Class.new(buried))
end
end
class Abc
def foo
"foo"
end
end
Abc.reincarnate
class Abc
def foo
puts super
end
end
Abc.new.foo
# Reincarnation for modules
class Module
def reincarnate
buried = Object.__send__(:remove_const, self.name)
Object.const_set(self.name, Module.new).__send__(:include, buried)
end
end
module Boo
def bar
"bar"
end
end
Boo.reincarnate
module Boo
def bar
puts super
end
end
class BooTest
include Boo
end
BooTest.new.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment