mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
35 lines
457 B
Ruby
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
|