Class: ActionDispatch::Response::RackBody
- Inherits:
-
Object
- Object
- ActionDispatch::Response::RackBody
- Defined in:
- lib/action_dispatch/http/response.rb
Instance Method Summary collapse
- #body ⇒ Object
- #close ⇒ Object
- #each(*args, &block) ⇒ Object
-
#initialize(response) ⇒ RackBody
constructor
A new instance of RackBody.
- #respond_to?(method, include_private = false) ⇒ Boolean
- #to_ary ⇒ Object
- #to_path ⇒ Object
Constructor Details
#initialize(response) ⇒ RackBody
Returns a new instance of RackBody.
487 488 489 |
# File 'lib/action_dispatch/http/response.rb', line 487 def initialize(response) @response = response end |
Instance Method Details
#body ⇒ Object
501 502 503 |
# File 'lib/action_dispatch/http/response.rb', line 501 def body @response.body end |
#close ⇒ Object
495 496 497 498 499 |
# File 'lib/action_dispatch/http/response.rb', line 495 def close # Rack "close" maps to Response#abort, and *not* Response#close # (which is used when the controller's finished writing) @response.abort end |
#each(*args, &block) ⇒ Object
491 492 493 |
# File 'lib/action_dispatch/http/response.rb', line 491 def each(*args, &block) @response.each(*args, &block) end |
#respond_to?(method, include_private = false) ⇒ Boolean
505 506 507 508 509 510 511 |
# File 'lib/action_dispatch/http/response.rb', line 505 def respond_to?(method, include_private = false) if method.to_s == "to_path" @response.stream.respond_to?(method) else super end end |
#to_ary ⇒ Object
517 518 519 |
# File 'lib/action_dispatch/http/response.rb', line 517 def to_ary nil end |
#to_path ⇒ Object
513 514 515 |
# File 'lib/action_dispatch/http/response.rb', line 513 def to_path @response.stream.to_path end |