Skip to content

Instantly share code, notes, and snippets.

@joegaudet
Created June 13, 2018 18:34
Show Gist options
  • Save joegaudet/27bf162bc3cf07f595314e791ca60296 to your computer and use it in GitHub Desktop.
Save joegaudet/27bf162bc3cf07f595314e791ca60296 to your computer and use it in GitHub Desktop.
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