class DatalackeyParentProcess
Attributes
executable[R]
exit_code[R]
stderr[R]
stdin[R]
stdout[R]
Public Class Methods
new(to_lackey, from_lackey)
click to toggle source
# File lib/datalackeylib.rb, line 116 def initialize(to_lackey, from_lackey) @exit_code = 0 @stdout = from_lackey @stdin = to_lackey @stderr = nil @executable = nil end
Public Instance Methods
finish()
click to toggle source
# File lib/datalackeylib.rb, line 124 def finish @stdin.close end