Sha256: 040a5e190f8471b4a3f417ac2f2a37001aa77e6a3dd38c995dfd5f27e872aa8f
Contents?: true
Size: 212 Bytes
Versions: 30
Compression:
Stored size: 212 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
30 entries across 30 versions & 2 rubygems