Class: Spree::Gateway Deprecated

Inherits:
PaymentMethod::CreditCard show all
Defined in:
app/models/spree/gateway.rb

Overview

Deprecated.

Use Spree::PaymentMethod::CreditCard or Spree::PaymentMethod instead

Defined Under Namespace

Classes: Bogus, BogusSimple

Instance Method Summary collapse

Methods inherited from PaymentMethod::CreditCard

#partial_name, #payment_source_class, #reusable_sources, #reusable_sources_by_order, #supports?

Methods inherited from PaymentMethod

active?, #auto_capture?, available, const_missing, #deprecated_method_type_override, #display_on, #display_on=, find_with_destroyed, #gateway, #method_type, model_name, #options, #partial_name, #payment_profiles_supported?, #payment_source_class, providers, #reusable_sources, #source_required?, #store_credit?, #supports?, #try_void

Methods included from Preferences::StaticallyConfigurable

#preference_source=, #preferences, #preferences=

Methods included from ParanoiaDeprecations

#paranoia_delete, #paranoia_destroy

Methods inherited from Base

display_includes, #initialize_preference_defaults, page, preference

Methods included from Preferences::Preferable

#admin_form_preference_names, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Constructor Details

#initialize(*args) ⇒ Gateway

Returns a new instance of Gateway.



6
7
8
9
10
11
12
# File 'app/models/spree/gateway.rb', line 6

def initialize(*args)
  Spree::Deprecation.warn \
    "Using Spree::Gateway as parent class of payment methods is deprecated. " \
    "Please use Spree::PaymentMethod::CreditCard for credit card based payment methods " \
    "or Spree::PaymentMethod for non credit card payment methods instead."
  super
end