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.



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

def initialize(body, &block)
  @body = body
  @block = block
  @closed = 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.



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

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.



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

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)


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

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.



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

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

#respond_to_missing?(*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)


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

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