Last active
August 29, 2015 14:05
-
-
Save lfborjas/7bb2e94074319c8b1c7f 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
class Dog < Animal | |
def pet | |
dog_petter.pet | |
end | |
private | |
def dog_petter | |
DogPetter.new | |
end | |
end | |
Dog.new.pet |
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 FuckEverythingUp | |
def destroy | |
exit(1) | |
end | |
def bite_the_guy | |
"rawr" | |
end | |
end | |
class Dog < Animal | |
include FuckEverythingUp | |
include BeCute | |
include MunchOnStuff | |
end | |
Dog.new.destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment