Class: Commands::Datas::Pipe

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

Instance Method Summary collapse

Constructor Details

#initialize(*a, &b) ⇒ Pipe

Returns a new instance of Pipe.



42
43
44
45
46
# File 'lib/commands/datas/pipe.rb', line 42

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