Skip to content

Instantly share code, notes, and snippets.

@Sihui
Created July 16, 2017 16:23
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/235b6f4a58657a04f894f97a4532f2c6 to your computer and use it in GitHub Desktop.
Save Sihui/235b6f4a58657a04f894f97a4532f2c6 to your computer and use it in GitHub Desktop.
Design Pattern: Decorator and Waffle
class WaffleDecorator
attr_reader :waffle
def initialize(waffle)
@waffle = waffle
end
def serve
waffle.serve
puts " topped with #{topping}"
end
def eat
waffle.eat
puts " and then eat some #{topping}"
end
def topping
raise NotImplementedError
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment