Skip to content

Instantly share code, notes, and snippets.

@comboy
Created November 6, 2012 08:57
Show Gist options
  • Save comboy/4023579 to your computer and use it in GitHub Desktop.
Save comboy/4023579 to your computer and use it in GitHub Desktop.
class A
class B < A
end
def foo
puts "AMA #{self.class}"
end
end
puts A::B::B::B::B::B::B::B.new.foo # "AMA A::B"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment