class CoutinhoAssembly::RunnerExit

Attributes

exitstatus[RW]

outputs is a hash table with info about outdirs and outfiles from the process.

outputs[RW]

outputs is a hash table with info about outdirs and outfiles from the process.

proc_status[RW]

outputs is a hash table with info about outdirs and outfiles from the process.

Public Class Methods

new(proc_status, exitstatus, outputs) click to toggle source
# File lib/coutinho_assembly.rb, line 11
def initialize proc_status, exitstatus, outputs
  @proc_status = proc_status
  @exitstatus  = exitstatus
  @outputs     = outputs
end