class Origami::ExternalStream

Class representing an external Stream.

Public Class Methods

new(filespec, hash = {}) click to toggle source
Calls superclass method Origami::Stream::new
# File lib/origami/stream.rb, line 494
def initialize(filespec, hash = {})
    hash[:F] = filespec
    super('', hash)
end