class Rack::BodyProxy

Public Class Methods

new(body, &block) click to toggle source
# File lib/rack/body_proxy.rb, line 5
def initialize(body, &block)
  @body = body
  @block = block
  @closed = false
end

Public Instance Methods

close() click to toggle source
# File lib/rack/body_proxy.rb, line 15
def close
  return if @closed
  @closed = true
  begin
    @body.close if @body.respond_to? :close
  ensure
    @block.call
  end
end
closed?() click to toggle source
# File lib/rack/body_proxy.rb, line 25
def closed?
  @closed
end
each() { |body| ... } click to toggle source

N.B. This method is a special case to address the bug described by #434. We are applying this special case for each only. Future bugs of this class will be handled by requesting users to patch their ruby implementation, to save adding too many methods in this class.

# File lib/rack/body_proxy.rb, line 33
def each
  @body.each { |body| yield body }
end
method_missing(method_name, *args, &block) click to toggle source
# File lib/rack/body_proxy.rb, line 37
def method_missing(method_name, *args, &block)
  @body.__send__(method_name, *args, &block)
end
respond_to?(method_name, include_all = false) click to toggle source
Calls superclass method
# File lib/rack/body_proxy.rb, line 11
def respond_to?(method_name, include_all = false)
  super or @body.respond_to?(method_name, include_all)
end