Sha256: 41675aca8b6f456908d69796a3f7f76e6ce12b6b0d7c7c4914d72283373e08b8
Contents?: true
Size: 392 Bytes
Versions: 11
Compression:
Stored size: 392 Bytes
Contents
class EmptyAcquirer def initialize(*args) end class Transaction def initialize(payment) @payment = payment end def id "0" end def authorize true end def reverse true end def confirm true end def error nil end end def transaction(payment, &block) yield Transaction.new(payment) end end
Version data entries
11 entries across 11 versions & 1 rubygems