lib/active_merchant/billing/gateways/payscout.rb in activemerchant-1.108.0 vs lib/active_merchant/billing/gateways/payscout.rb in activemerchant-1.109.0
- old
+ new
@@ -2,10 +2,10 @@
module Billing #:nodoc:
class PayscoutGateway < Gateway
self.live_url = self.test_url = 'https://secure.payscout.com/api/transact.php'
self.supported_countries = ['US']
- self.supported_cardtypes = [:visa, :master, :american_express, :discover]
+ self.supported_cardtypes = %i[visa master american_express discover]
self.default_currency = 'USD'
self.homepage_url = 'http://www.payscout.com/'
self.display_name = 'Payscout'
def initialize(options = {})