Class: Skylight::Middleware::BodyProxy Private

Inherits:
Object
  • Object
show all
Defined in:
lib/skylight/middleware.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Constructor Details

#initialize(body, &block) ⇒ BodyProxy

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of BodyProxy.



6
7
8
# File 'lib/skylight/middleware.rb', line 6

def initialize(body, &block)
  @body, @block, @closed = body, block, false
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*args, &block) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



37
38
39
40
# File 'lib/skylight/middleware.rb', line 37

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

Instance Method Details

#closeObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



15
16
17
18
19
20
21
22
23
# File 'lib/skylight/middleware.rb', line 15

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

#closed?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


25
26
27
# File 'lib/skylight/middleware.rb', line 25

def closed?
  @closed
end

#each(*args, &block) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

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.



33
34
35
# File 'lib/skylight/middleware.rb', line 33

def each(*args, &block)
  @body.each(*args, &block)
end

#respond_to?(*args) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


10
11
12
13
# File 'lib/skylight/middleware.rb', line 10

def respond_to?(*args)
  return false if args.first.to_s =~ /^to_ary$/
  super or @body.respond_to?(*args)
end