Created
December 9, 2010 02:57
-
-
Save mattyoho/734270 to your computer and use it in GitHub Desktop.
Defining methods in an included module inside your class allows modification by modules later.
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
class Dog | |
module InstanceMethods | |
def bark | |
"Arf arf!" | |
end | |
end | |
include InstanceMethods | |
end | |
dog = Dog.new | |
dog.bark | |
#=> "Arf arf!" | |
module JapaneseBark | |
def bark | |
"Won won!" | |
end | |
end | |
Dog.send :include, JapaneseBark | |
dog = Dog.new | |
dog.bark | |
#=> "Won won!" | |
# This is versus: | |
class Cat | |
def meow | |
"Mew!" | |
end | |
end | |
cat = Cat.new | |
cat.meow | |
#=> 'Mew!' | |
module JapaneseMeow | |
def meow | |
'Nya!' | |
end | |
end | |
Cat.send :include, JapaneseMeow | |
cat = Cat.new | |
cat.meow | |
#=> 'Mew!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment