lib/active_merchant/billing/gateways/ogone.rb in activemerchant-1.108.0 vs lib/active_merchant/billing/gateways/ogone.rb in activemerchant-1.109.0

- old
+ new

@@ -131,12 +131,12 @@ OGONE_STORE_OPTION_DEPRECATION_MESSAGE = "The 'store' option has been renamed to 'billing_id', and its usage is deprecated." self.test_url = 'https://secure.ogone.com/ncol/test/' self.live_url = 'https://secure.ogone.com/ncol/prod/' - self.supported_countries = ['BE', 'DE', 'FR', 'NL', 'AT', 'CH'] + self.supported_countries = %w[BE DE FR NL AT CH] # also supports Airplus and UATP - self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :discover, :jcb, :maestro] + self.supported_cardtypes = %i[visa master american_express diners_club discover jcb maestro] self.homepage_url = 'http://www.ogone.com/' self.display_name = 'Ogone' self.default_currency = 'EUR' self.money_format = :cents