Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Last active December 20, 2016 02:08
Show Gist options
  • Save thiagoa/c5cccb2fb8c1fd6f04f2973199026fc7 to your computer and use it in GitHub Desktop.
Save thiagoa/c5cccb2fb8c1fd6f04f2973199026fc7 to your computer and use it in GitHub Desktop.
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