53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# File 'lib/solidus_support.rb', line 53
def payment_method_parent_class(credit_card: false)
if credit_card
ActiveSupport::Deprecation.warn " SolidusSupport.payment_method_parent_class(credit_card: true) is deprecated and will be removed\n in solidus_support 1.0. Please use Spree::PaymentMethod::CreditCard instead.\n WARN\n\n Spree::PaymentMethod::CreditCard\n else\n ActiveSupport::Deprecation.warn <<-WARN.squish, caller\n SolidusSupport.payment_method_parent_class(credit_card: false) is deprecated and will be removed\n in solidus_support 1.0. Please use Spree::PaymentMethod instead.\n WARN\n\n Spree::PaymentMethod\n end\nend\n".squish, caller
|