Sha256: 9d0dd46742f4e84369e9f96236ff2d6c13855530138a031102ea3f7537412eb8

Contents?: true

Size: 391 Bytes

Versions: 1

Compression:

Stored size: 391 Bytes

Contents

module Spree
  class Gateway::PinGateway < Gateway
    preference :api_key, :string
    preference :currency, :string, :default => 'AUD'

    attr_accessible :preferred_api_key, :preferred_currency


    def provider_class
      ActiveMerchant::Billing::PinGateway
    end

    # Pin does not appear to support authorizing transactions yet
    def auto_capture?
      true
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_gateway-2.0.1 app/models/spree/gateway/pin_gateway.rb