Method: EventMachine::Twitter::GzipDecoder#decode

Defined in:
lib/em-twitter/decoders/gzip_decoder.rb

#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