Sha256: 00b9409e8c98b26e98cd8ab7b0bcb8232e0bbb3e408b7e3fd494bed6b351688d
Contents?: true
Size: 721 Bytes
Versions: 3
Compression:
Stored size: 721 Bytes
Contents
require File.dirname(__FILE__) + '/cc5' module ActiveMerchant #:nodoc: module Billing #:nodoc: class FinansbankGateway < CC5Gateway self.live_url = 'https://www.fbwebpos.com/servlet/cc5ApiServer' self.test_url = 'https://testsanalpos.est.com.tr/servlet/cc5ApiServer' # The countries the gateway supports merchants from as 2 digit ISO country codes self.supported_countries = ['US', 'TR'] # The card types supported by the payment gateway self.supported_cardtypes = [:visa, :master] # The homepage URL of the gateway self.homepage_url = 'https://www.fbwebpos.com/' # The name of the gateway self.display_name = 'Finansbank WebPOS' end end end
Version data entries
3 entries across 3 versions & 2 rubygems