Skip to content

Instantly share code, notes, and snippets.

@ttanimichi
Created December 19, 2015 09:22
Show Gist options
  • Save ttanimichi/421be63586755b745b2a to your computer and use it in GitHub Desktop.
Save ttanimichi/421be63586755b745b2a to your computer and use it in GitHub Desktop.
class Object
def original_class
(self.to_s =~ /#<Class:(\w+)>/) and const_get($1)
end
end
class Foo
class << self
def foo
:foo
end
original_class.foo # => :foo
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment