Sha256: e18f20ee4cdf0ac50d05152ce414980b788a56f53bf7530a8dec69c7feb3948a
Contents?: true
Size: 302 Bytes
Versions: 30
Compression:
Stored size: 302 Bytes
Contents
# -*- encoding: binary -*- # :enddoc: class Rainbows::MaxBody::RewindableWrapper < Rainbows::MaxBody::Wrapper def initialize(rack_input, limit) @orig_limit = limit super end def rewind @limit = @orig_limit @rbuf = '' @input.rewind end def size @input.size end end
Version data entries
30 entries across 30 versions & 1 rubygems