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::CURRENCY_CODES

Constants inherited from Gateway

Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS

Instance Attribute Summary

Attributes inherited from Gateway

#options

Instance Method Summary collapse

Methods inherited from IridiumGateway

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

Methods inherited from Gateway

#card_brand, card_brand, inherited, supports?, #test?

Methods included from CreditCardFormatting

#format

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