Created
August 27, 2009 09:41
-
-
Save swanandp/176199 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module M | |
def test | |
puts "test" | |
end | |
end | |
class X | |
include M | |
def test | |
puts "instance" | |
super | |
end | |
end | |
class Y | |
extend M | |
def self.test | |
puts "class" | |
super | |
end | |
end | |
X.new.test | |
X.test | |
Y.new.test | |
Y.test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment