Sha256: 37c1fc2f9b8e546790fe325d9311d5539a4d684bf390278e3699bcb09c300650

Contents?: true

Size: 958 Bytes

Versions: 181

Compression:

Stored size: 958 Bytes

Contents

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

    def respond_to?(*args)
      return false if args.first.to_s =~ /^to_ary$/
      super or @body.respond_to?(*args)
    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(*args, &block)
      @body.each(*args, &block)
    end

    def method_missing(*args, &block)
      super if args.first.to_s =~ /^to_ary$/
      @body.__send__(*args, &block)
    end
  end
end

Version data entries

181 entries across 159 versions & 43 rubygems

Version Path
scout_realtime-1.0.2 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-1.0.1 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-1.0.0 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-0.5.5 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-0.5.5.pre lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-0.5.4 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-0.5.3 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-0.5.2 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
scout_realtime-0.5.1 lib/vendor/rack-1.5.2/lib/rack/body_proxy.rb
mango-0.8.0 vendor/bundler/ruby/2.1.0/gems/rack-1.5.2/lib/rack/body_proxy.rb
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/rack-1.5.2/lib/rack/body_proxy.rb
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/rack-1.5.2/lib/rack/body_proxy.rb
torquebox-console-0.3.0 vendor/bundle/jruby/1.9/gems/rack-1.5.2/lib/rack/body_proxy.rb
challah-1.0.0 vendor/bundle/gems/rack-1.5.2/lib/rack/body_proxy.rb
swipe-rails-0.0.5 vendor/bundle/gems/rack-1.4.5/lib/rack/body_proxy.rb
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/body_proxy.rb
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/body_proxy.rb
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/body_proxy.rb
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-1.4.5/lib/rack/body_proxy.rb
font-awesome-rails-3.1.1.2 vendor/ruby/1.9.1/gems/rack-1.4.5/lib/rack/body_proxy.rb