module Kuromi::Runner::Runnable

Public Instance Methods

run() click to toggle source
# File lib/kuromi/runner/runnable.rb, line 6
def run
  Open3.popen3(self.to_s) do |sin, sout, serr, thr|
    return Output.new(thr.value, sout.read, serr.read)
  end
end