Class: ObjectiveCommand::Datas::Pipe

Inherits:
ObjectiveCommand::Datas.selfself::Data
  • Object
show all
Defined in:
lib/objective_command/datas/pipe.rb

Instance Method Summary collapse

Constructor Details

#initialize(*a, &b) ⇒ Pipe

Returns a new instance of Pipe.



45
46
47
48
49
# File 'lib/objective_command/datas/pipe.rb', line 45

def initialize ( *a, &b )
  super
  @output = IOPipe.new
  @error = IOPipe.new
end