Sha256: b744e73aea994768bddc8b5e80550501cc0ee285f79ba290c0ea2a6a99c955ca
Contents?: true
Size: 921 Bytes
Versions: 11
Compression:
Stored size: 921 Bytes
Contents
# encoding: UTF-8 module Yajl module Gzip # This is a wrapper around Zlib::GzipReader to allow it's #read method to adhere # to the IO spec, allowing for two parameters (length, and buffer) class StreamReader < ::Zlib::GzipReader # A helper method to allow use similar to IO#read def read(len=nil, buffer=nil) if val = super(len) unless buffer.nil? buffer.replace(val) return buffer end super(len) else nil end end # Helper method for one-off parsing from a gzip-compressed stream # # See Yajl::Parser#parse for parameter documentation def self.parse(input, options={}, buffer_size=nil, &block) if input.is_a?(String) input = StringIO.new(input) end Yajl::Parser.new(options).parse(new(input), buffer_size, &block) end end end end
Version data entries
11 entries across 11 versions & 2 rubygems