Skip to content

Instantly share code, notes, and snippets.

@klebervirgilio
Created October 30, 2012 19:32
Show Gist options
  • Save klebervirgilio/3982447 to your computer and use it in GitHub Desktop.
Save klebervirgilio/3982447 to your computer and use it in GitHub Desktop.
module A
class Payment
def foo
p "Payment#foo"
end
end
end
module A
class CC < Payment
def foo
super
p "CC#foo"
end
end
end
p A::CC.new.foo
#=> "Payment#foo"
#=> "CC#foo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment