Object
A stream wrapper that can only be written to. Any attempt to read from this restricted stream will result in a NameError being thrown.
# File lib/archive/tar/minitar.rb, line 251 def initialize(anIO) @io = anIO end
# File lib/archive/tar/minitar.rb, line 255 def write(data) @io.write(data) end
[Validate]
Generated with the Darkfish Rdoc Generator 2.