class TerraformLandscape::Output

def write_from(other_io)

Connect directly to a readable stream
def write_from(other_io)
  while (line = other_io.gets)
    print line
  end
end