Created
January 17, 2012 21:24
-
-
Save LTe/1628964 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 BeerDrinkerRole | |
def drink | |
end | |
end | |
class BeerDrinker | |
include BeerDrinkerRole | |
end | |
module AnotherRole | |
def another_method | |
end | |
end | |
class Another | |
include AnotherRole | |
end | |
# and we can now | |
BeerDrinker.new.extend(AnotherRole) | |
Another.new.extend(BeerDrinkerRole) # etc. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment