Sha256: 0cf1388d8c1e456e8b56828f440bf438cbdeff8c14e535d91b54efaa0c083eef
Contents?: true
Size: 204 Bytes
Versions: 147
Compression:
Stored size: 204 Bytes
Contents
class DataTooShort < StandardError; end class IoProcessor # Does some fancy stuff unless the length of +io+ is shorter than 32 def process(io) raise DataTooShort if io.read.length < 32 end end
Version data entries
147 entries across 147 versions & 22 rubygems