Class: Skylight::Core::Middleware::BodyProxy Private

Inherits:
Object
  • Object
show all
Defined in:
lib/skylight/core/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.



8
9
10
# File 'lib/skylight/core/middleware.rb', line 8

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.



40
41
42
43
# File 'lib/skylight/core/middleware.rb', line 40

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.



17
18
19
20
21
22
23
24
25
# File 'lib/skylight/core/middleware.rb', line 17

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)


27
28
29
# File 'lib/skylight/core/middleware.rb', line 27

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 github.com/rack/rack/issues/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.



36
37
38
# File 'lib/skylight/core/middleware.rb', line 36

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)


12
13
14
15
# File 'lib/skylight/core/middleware.rb', line 12

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