Last active
December 20, 2016 02:08
-
-
Save thiagoa/c5cccb2fb8c1fd6f04f2973199026fc7 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 UselessAble | |
def guess_what? | |
puts "I'm useless!" | |
end | |
end | |
# Instances of AssHole now respond to "guess_what?" and "soul" | |
class AssHole | |
include UselessAble | |
def soul | |
puts 'I have no soul!' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment