Sha256: 661de5372e22dc44e28b8d1fc7bbb83799403d73f101fbee65e53805453958c4

Contents?: true

Size: 508 Bytes

Versions: 196

Compression:

Stored size: 508 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

    # Mimics IO#read with no data
    #
    def read(count=nil,buffer=nil)
      (count && count > 0) ? nil : ""
    end

    # Does nothing
    #
    def rewind
    end

    # Does nothing
    #
    def close
    end
  end
end

Version data entries

196 entries across 193 versions & 19 rubygems

Version Path
puma-2.1.1 lib/puma/null_io.rb
puma-2.1.0-java lib/puma/null_io.rb
puma-2.1.0 lib/puma/null_io.rb
puma-2.0.1-java lib/puma/null_io.rb
puma-2.0.1 lib/puma/null_io.rb
puma-2.0.0-java lib/puma/null_io.rb
puma-2.0.0 lib/puma/null_io.rb
puma-2.0.0.b7-java lib/puma/null_io.rb
puma-2.0.0.b7 lib/puma/null_io.rb
puma-2.0.0.b6 lib/puma/null_io.rb
puma-2.0.0.b5 lib/puma/null_io.rb
puma-2.0.0.b4-java lib/puma/null_io.rb
puma-2.0.0.b4 lib/puma/null_io.rb
puma-2.0.0.b3-java lib/puma/null_io.rb
puma-2.0.0.b3 lib/puma/null_io.rb
puma-2.0.0.b2-java lib/puma/null_io.rb
puma-2.0.0.b2 lib/puma/null_io.rb
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/puma-1.6.3/lib/puma/null_io.rb
puma-2.0.0.b1-java lib/puma/null_io.rb
puma-2.0.0.b1 lib/puma/null_io.rb