Method: Origami::Stream#data=

Defined in:
lib/origami/stream.rb

#data=(str) ⇒ Object Also known as: decoded_data=

Sets the uncompressed stream content.

str

The new uncompressed data.



277
278
279
280
# File 'lib/origami/stream.rb', line 277

def data=(str)
    @encoded_data = nil
    @data = str
end