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_path ⇒ Object
Constructor Details
#initialize(response) ⇒ RackBody
Returns a new instance of RackBody.
475 476 477 |
# File 'lib/action_dispatch/http/response.rb', line 475 def initialize(response) @response = response end |
Instance Method Details
#body ⇒ Object
489 490 491 |
# File 'lib/action_dispatch/http/response.rb', line 489 def body @response.body end |
#close ⇒ Object
483 484 485 486 487 |
# File 'lib/action_dispatch/http/response.rb', line 483 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
479 480 481 |
# File 'lib/action_dispatch/http/response.rb', line 479 def each(*args, &block) @response.each(*args, &block) end |
#respond_to?(method, include_private = false) ⇒ Boolean
493 494 495 496 497 498 499 |
# File 'lib/action_dispatch/http/response.rb', line 493 def respond_to?(method, include_private = false) if method.to_sym == :to_path @response.stream.respond_to?(method) else super end end |
#to_path ⇒ Object
501 502 503 |
# File 'lib/action_dispatch/http/response.rb', line 501 def to_path @response.stream.to_path end |