Skip to content

Instantly share code, notes, and snippets.

@Sihui
Created July 16, 2017 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sihui/8011dfc0c47030d7f36cb969bd2eda94 to your computer and use it in GitHub Desktop.
Save Sihui/8011dfc0c47030d7f36cb969bd2eda94 to your computer and use it in GitHub Desktop.
Design Pattern: Decorator and Waffle
class StrawberryWaffle < WaffleDecorator
def topping
'strawberries'
end
end
class BlueberryWaffle < WaffleDecorator
def topping
'blueberries'
end
end
class BlackberryWaffle < WaffleDecorator
def topping
'blackberries'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment