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/writer.rb, line 12 def initialize(io) @io = io end
# File lib/archive/tar/minitar/writer.rb, line 16 def write(data) @io.write(data) end