Sha256: 92b6a0c084f298d9bb40564cffe795b5e31a3f82302b2a4479d982bb4390c8b1

Contents?: true

Size: 907 Bytes

Versions: 122

Compression:

Stored size: 907 Bytes

Contents

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class CardSaveGateway < IridiumGateway
      #CardSave lets you handle failovers on payments by providing 3 gateways in case one happens to be down
      #URLS = ['https://gw1.cardsaveonlinepayments.com:4430/','https://gw2.cardsaveonlinepayments.com:4430/','https://gw3.cardsaveonlinepayments.com:4430/']      
      
      self.money_format = :cents
      self.default_currency = 'GBP'
      self.supported_cardtypes = [ :visa, :switch, :maestro, :master, :solo, :american_express, :jcb ]
      self.supported_countries = [ 'GB' ]
      self.homepage_url = 'http://www.cardsave.net/'
      self.display_name = 'CardSave'
      
      def initialize(options={})
        super
        @test_url = 'https://gw1.cardsaveonlinepayments.com:4430/'
        @live_url = 'https://gw1.cardsaveonlinepayments.com:4430/'
      end
      
    end
  end
end

Version data entries

122 entries across 121 versions & 11 rubygems

Version Path
activemerchant-1.83.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.82.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.81.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.80.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.79.2 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.79.1 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.79.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.78.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.77.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.76.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.75.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.74.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.73.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.72.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.71.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.70.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.69.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.68.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.67.0 lib/active_merchant/billing/gateways/card_save.rb
tanga_activemerchant-1.38.0.5 lib/active_merchant/billing/gateways/card_save.rb