From bc710ec67ee9b70a91acddb9ed9ea15891d5d8ba Mon Sep 17 00:00:00 2001 From: Nick Simmons Date: Tue, 7 Jan 2014 16:08:01 -0500 Subject: [PATCH] Added all non-fractional currencies --- lib/active_merchant/billing/gateway.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/active_merchant/billing/gateway.rb b/lib/active_merchant/billing/gateway.rb index 39826a2d7ce..d3677fb333a 100644 --- a/lib/active_merchant/billing/gateway.rb +++ b/lib/active_merchant/billing/gateway.rb @@ -62,7 +62,7 @@ class Gateway include Utils DEBIT_CARDS = [ :switch, :solo ] - CURRENCIES_WITHOUT_FRACTIONS = [ 'JPY', 'HUF', 'TWD', 'ISK' ] + CURRENCIES_WITHOUT_FRACTIONS = [ 'BIF', 'BYR', 'CLP', 'CVE', 'DJF', 'GNF', 'HUF', 'ISK', 'JPY', 'KMF', 'KRW', 'PYG', 'RWF', 'TWD', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF' ] CREDIT_DEPRECATION_MESSAGE = "Support for using credit to refund existing transactions is deprecated and will be removed from a future release of ActiveMerchant. Please use the refund method instead." cattr_reader :implementations