Sha256: 1e0c8e8e6fa48580ad215bd797826bf273e26f67ab9a9d075329d777d9f6f4df
Contents?: true
Size: 239 Bytes
Versions: 3
Compression:
Stored size: 239 Bytes
Contents
module BuildMaster # Reads from the input stream to output stream module IoChain def copy_io(input, output) # output.write input.read while (content = input.read(1024)) do output.write content end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
BuildMaster-1.0.9 | lib/buildmaster/cotta/io_chain.rb |
BuildMaster-1.1.12 | lib/buildmaster/cotta/io_chain.rb |
BuildMaster-1.1.9 | lib/buildmaster/cotta/io_chain.rb |