Method: CloudKit::Request#via
- Defined in:
- lib/cloudkit/request.rb
#via ⇒ Object
Return an array containing one entry for each piece of upstream middleware. This is in the same spirit as Via headers in HTTP, but does not use the header because the transition from one piece of middleware to the next does not use HTTP.
93 94 95 |
# File 'lib/cloudkit/request.rb', line 93 def via @env[CLOUDKIT_VIA].split(', ') rescue [] end |