Class: Spree::Gateway::BogusSimple Deprecated

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

Overview

Deprecated.

Use Spree::PaymentMethod::SimpleBogusCreditCard instead

Constant Summary

Constants inherited from PaymentMethod::BogusCreditCard

PaymentMethod::BogusCreditCard::AUTHORIZATION_CODE, PaymentMethod::BogusCreditCard::FAILURE_MESSAGE, PaymentMethod::BogusCreditCard::SUCCESS_MESSAGE, PaymentMethod::BogusCreditCard::TEST_AMEX, PaymentMethod::BogusCreditCard::TEST_DISC, PaymentMethod::BogusCreditCard::TEST_MC, PaymentMethod::BogusCreditCard::TEST_VISA, PaymentMethod::BogusCreditCard::VALID_CCS

Instance Attribute Summary

Attributes inherited from PaymentMethod::BogusCreditCard

#test

Instance Method Summary collapse

Methods inherited from PaymentMethod::SimpleBogusCreditCard

#authorize, #payment_profiles_supported?, #purchase

Methods inherited from PaymentMethod::BogusCreditCard

#actions, #authorize, #capture, #create_profile, #credit, #gateway_class, #payment_profiles_supported?, #purchase, #test?, #try_void, #void

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 inherited from Base

display_includes, page, preference, #preferences

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Constructor Details

#initialize(*args) ⇒ BogusSimple

Returns a new instance of BogusSimple.



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

def initialize(*args)
  Spree::Deprecation.warn \
    'Spree::Gateway::BogusSimple is deprecated. ' \
    'Please use Spree::PaymentMethod::SimpleBogusCreditCard instead'
  super
end