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 425
def initialize(filespec, hash = {})

  hash[:F] = filespec
  super('', hash)
end