class Stall::Payments::ManualPaymentGateway::Request

Public Instance Methods

checksum() click to toggle source
# File lib/stall/payments/manual_payment_gateway.rb, line 40
def checksum
  calculate_checksum_for(token, reference, timestamp)
end
payment_form_partial_path() click to toggle source
# File lib/stall/payments/manual_payment_gateway.rb, line 32
def payment_form_partial_path
  'stall/payments/manual_payment_gateway/form'
end
timestamp() click to toggle source
# File lib/stall/payments/manual_payment_gateway.rb, line 36
def timestamp
  @timestamp ||= (Time.now.to_f * 1000).round.to_s
end