Sha256: 6e4b14bc7c1bedc4c67e5e96aaa4b94a7f3b5486e82bb3f502be903a9c9ef6b1

Contents?: true

Size: 868 Bytes

Versions: 19

Compression:

Stored size: 868 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, :maestro, :master, :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

19 entries across 19 versions & 2 rubygems

Version Path
activemerchant-1.103.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.102.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.101.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.100.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.99.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.98.0 lib/active_merchant/billing/gateways/card_save.rb
active_accountability_merchant-1.97.1 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.97.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.96.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.95.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.94.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.93.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.92.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.91.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.90.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.89.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.88.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.87.0 lib/active_merchant/billing/gateways/card_save.rb
activemerchant-1.86.0 lib/active_merchant/billing/gateways/card_save.rb