Sha256: dd61589d9567a620392d79d67cbcb4b1eb797a7d3c9cbcd4978de02db621a86f

Contents?: true

Size: 256 Bytes

Versions: 18

Compression:

Stored size: 256 Bytes

Contents

class Cmds
  # stupid little wrapper around IO.pipe that can have some extra info
  # attached to it
  class Pipe
    attr_reader :name, :sym, :r, :w

    def initialize name, sym
      @name = name
      @sym = sym
      @r, @w = IO.pipe
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
cmds-0.2.11 lib/cmds/pipe.rb
cmds-0.2.10 lib/cmds/pipe.rb
cmds-0.2.9 lib/cmds/pipe.rb
cmds-0.2.8 lib/cmds/pipe.rb
cmds-0.2.7 lib/cmds/pipe.rb
cmds-0.2.6 lib/cmds/pipe.rb
cmds-0.2.5 lib/cmds/pipe.rb
cmds-0.2.4 lib/cmds/pipe.rb
cmds-0.2.3 lib/cmds/pipe.rb
cmds-0.2.2 lib/cmds/pipe.rb
cmds-0.2.1 lib/cmds/pipe.rb
cmds-0.2.0 lib/cmds/pipe.rb
cmds-0.0.9 lib/cmds/pipe.rb
cmds-0.0.8 lib/cmds/pipe.rb
cmds-0.0.7 lib/cmds/pipe.rb
cmds-0.0.6 lib/cmds/pipe.rb
cmds-0.0.5 lib/cmds/pipe.rb
cmds-0.0.4 lib/cmds/pipe.rb