1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/lib/puma/null_io.rb
2011-12-01 15:23:14 -08:00

35 lines
457 B
Ruby

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