Path  Archive::Tar::Minitar::Writer::RestrictedStream

Parent

  • Object

Methods

Generated with Razzle Dazzle Redfish

[Validate]

RestrictedStream

A stream wrapper that can only be written to. Any attempt to read from this restricted stream will result in a NameError being thrown.

Public Class Methods

new(anIO) click to toggle source

(Not documented)

# File vendor/path/minitar.rb, line 251
      def initialize(anIO)
        @io = anIO
      end

Public Instance Methods

write(data) click to toggle source

(Not documented)

# File vendor/path/minitar.rb, line 255
      def write(data)
        @io.write(data)
      end

Disabled; run with --debug to generate this.