Class: EventMachine::Twitter::GzipDecoder

Inherits:
Object
  • Object
show all
Defined in:
lib/em-twitter/decoders/gzip_decoder.rb

Instance Method Summary collapse

Instance Method Details

#decode(str) ⇒ Object



8
9
10
# File 'lib/em-twitter/decoders/gzip_decoder.rb', line 8

def decode(str)
  Zlib::GzipReader.new(StringIO.new(str.to_s)).read
end