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.
# Интерфейс стратегии (общий для всех стратегий)
classPaymentStrategy
defpay(amount)
raiseNotImplementedError,"Метод pay должен быть реализован в подклассе"
end
end
# Реализация стратегии оплаты картой
classCreditCardPayment<PaymentStrategy
defpay(amount)
puts"Оплата #{amount}₽ с использованием кредитной карты 💳"