Sha256: 4024cdb47d4d476a12423b7a7ee136ad9eab22d44548396ace31ba03304fb58e

Contents?: true

Size: 1.03 KB

Versions: 55

Compression:

Stored size: 1.03 KB

Contents

module Rack
  class BodyProxy
    def initialize(body, &block)
      @body = body
      @block = block
      @closed = false
    end

    def respond_to?(method_name, include_all=false)
      case method_name
      when :to_ary, 'to_ary'
        return false
      end
      super or @body.respond_to?(method_name, include_all)
    end

    def close
      return if @closed
      @closed = true
      begin
        @body.close if @body.respond_to? :close
      ensure
        @block.call
      end
    end

    def closed?
      @closed
    end

    # 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.
    def each
      @body.each { |body| yield body }
    end

    def method_missing(method_name, *args, &block)
      super if :to_ary == method_name
      @body.__send__(method_name, *args, &block)
    end
  end
end

Version data entries

55 entries across 53 versions & 14 rubygems

Version Path
rack-2.0.3 lib/rack/body_proxy.rb
rack-2.0.2 lib/rack/body_proxy.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
abaci-0.3.0 vendor/bundle/gems/rack-2.0.1/lib/rack/body_proxy.rb
second_step-0.1.2 secondstep-notify-1.0.0-osx/lib/ruby/lib/ruby/gems/2.2.0/gems/rack-2.0.1/lib/rack/body_proxy.rb
rack-2.0.1 lib/rack/body_proxy.rb
rack-2.0.0.rc1 lib/rack/body_proxy.rb
rack-2.0.0.alpha lib/rack/body_proxy.rb