class Cmds::Pipe

stupid little wrapper around IO.pipe that can have some extra info attached to it

Attributes

name[R]
r[R]
sym[R]
w[R]

Public Class Methods

new(name, sym) click to toggle source
# File lib/cmds/pipe.rb, line 7
def initialize name, sym
  @name = name
  @sym = sym
  @r, @w = IO.pipe
end