This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
classBeverage
# шаблонный метод
defprepare
boil_water
brew
pour_in_cup
add_condiments
end
# общие методы
defboil_water
puts"Кипячение воды..."
end
defpour_in_cup
puts"Наливание в чашку..."
end
defbrew
raiseNotImplementedError,"Метод 'brew' должен быть определён"
end
defadd_condiments
raiseNotImplementedError,"Метод 'add_condiments' должен быть определён"