Created
June 13, 2018 18:34
-
-
Save joegaudet/27bf162bc3cf07f595314e791ca60296 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 Pets | |
class Dog | |
def bark | |
raise 'Calling the abstract pet' | |
end | |
end | |
class Husky < Dog | |
def bark | |
'WOOOOF' | |
end | |
end | |
class Chihuahua < Dog | |
def bark | |
'Yiiiip' | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment