Skip to content

Instantly share code, notes, and snippets.

@urfolomeus
Created September 22, 2010 12:32
Show Gist options
  • Save urfolomeus/591583 to your computer and use it in GitHub Desktop.
Save urfolomeus/591583 to your computer and use it in GitHub Desktop.
# Example of potential Template pattern implementation: -
class Animal
def initialize(name, type)
@name = name
@type = type
end
def mammal?
@type == "mammal"
end
def speak
raise NotImplementedException("speak")
end
end
class Dog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment