module Bidding

Constants

VERSION

Public Class Methods

command_queue() click to toggle source
# File lib/bidding.rb, line 34
def self.command_queue
  @@queue
end
command_queue=(queue) click to toggle source
# File lib/bidding.rb, line 30
def self.command_queue=(queue)
  @@queue = queue
end
execute_commands(commands) click to toggle source
# File lib/bidding.rb, line 22
def self.execute_commands commands
  @@executor.execute commands
end
executor=(executor) click to toggle source
# File lib/bidding.rb, line 17
def self.executor=(executor)
  @@executor = executor
end
log_commands(commands) click to toggle source
# File lib/bidding.rb, line 38
def self.log_commands commands
  @@log.push commands
end
transaction_log=(log) click to toggle source
# File lib/bidding.rb, line 26
def self.transaction_log=(log)
  @@log = log
end