lib/active_merchant/billing/gateways/first_pay.rb in activemerchant-1.67.0 vs lib/active_merchant/billing/gateways/first_pay.rb in activemerchant-1.68.0
- old
+ new
@@ -1,18 +1,19 @@
require 'nokogiri'
module ActiveMerchant #:nodoc:
module Billing #:nodoc:
class FirstPayGateway < Gateway
- self.live_url = 'https://secure.1stpaygateway.net/secure/gateway/xmlgateway.aspx'
+ self.live_url = 'https://secure.goemerchant.com/secure/gateway/xmlgateway.aspx'
self.supported_countries = ['US']
self.default_currency = 'USD'
self.money_format = :dollars
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
self.homepage_url = 'http://1stpaygateway.net/'
self.display_name = '1stPayGateway.Net'
+ self.ssl_version = :TLSv1
def initialize(options={})
requires!(options, :transaction_center_id, :gateway_id)
super
end