lib/active_merchant/billing/gateways/ipg.rb in activemerchant-1.125.0 vs lib/active_merchant/billing/gateways/ipg.rb in activemerchant-1.126.0

- old
+ new

@@ -2,18 +2,17 @@ module Billing #:nodoc: class IpgGateway < Gateway self.test_url = 'https://test.ipg-online.com/ipgapi/services' self.live_url = 'https://www5.ipg-online.com' - self.supported_countries = %w(UY AR) + self.supported_countries = %w(AR) self.default_currency = 'ARS' self.supported_cardtypes = %i[visa master american_express discover] self.homepage_url = 'https://www.ipg-online.com' self.display_name = 'IPG' CURRENCY_CODES = { - 'UYU' => '858', 'ARS' => '032' } ACTION_REQUEST_ITEMS = %w(vault unstore)