Class: ActiveMerchant::Billing::CardSaveGateway

Inherits:
IridiumGateway show all
Defined in:
lib/active_merchant/billing/gateways/card_save.rb

Constant Summary

Constants inherited from IridiumGateway

IridiumGateway::AVS_CODE, IridiumGateway::CURRENCY_CODES, IridiumGateway::CVV_CODE

Constants inherited from Gateway

Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE

Instance Attribute Summary

Attributes inherited from Gateway

#options

Instance Method Summary collapse

Methods inherited from IridiumGateway

#authorize, #capture, #credit, #purchase, #refund, #scrub, #supports_scrubbing, #void

Methods inherited from Gateway

#add_field_to_post_if_present, #add_fields_to_post_if_present, #card_brand, card_brand, #generate_unique_id, inherited, #scrub, #supported_countries, supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #supports_scrubbing?, #test?

Methods included from CreditCardFormatting

#expdate, #format

Methods included from PostsData

included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request

Constructor Details

#initialize(options = {}) ⇒ CardSaveGateway

Returns a new instance of CardSaveGateway.



14
15
16
17
18
# File 'lib/active_merchant/billing/gateways/card_save.rb', line 14

def initialize(options = {})
  super
  @test_url = 'https://gw1.cardsaveonlinepayments.com:4430/'
  @live_url = 'https://gw1.cardsaveonlinepayments.com:4430/'
end