Sha256: 8a8a66c69ad75bafd488f30d38573414ef438078ed4c6faa1fdf8549dc220c86
Contents?: true
Size: 457 Bytes
Versions: 24
Compression:
Stored size: 457 Bytes
Contents
module Puma # Provides an IO-like object that always appears to contain no data. # Used as the value for rack.input when the request has no body. # class NullIO # Always returns nil # def gets nil end # Never yields # def each end # Always returns nil # def read(count) nil end # Does nothing # def rewind end # Does nothing # def close end end end
Version data entries
24 entries across 24 versions & 1 rubygems