Sha256: 2fe887eb15fe270705dcf54e897b372afbafe99f143fabe833976255f96240dd

Contents?: true

Size: 495 Bytes

Versions: 62

Compression:

Stored size: 495 Bytes

Contents

module Workarea
  class Payment
    module CreditCardOperation
      def handle_active_merchant_errors
        begin
          yield
        rescue ActiveMerchant::ResponseError => error
          error.response
        rescue ActiveMerchant::ActiveMerchantError,
                ActiveMerchant::ConnectionError => error
          ActiveMerchant::Billing::Response.new(false, nil)
        end
      end

      def gateway
        Workarea.config.gateways.credit_card
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.13 app/models/workarea/payment/credit_card_operation.rb
workarea-core-3.4.12 app/models/workarea/payment/credit_card_operation.rb