Class: ActionController::DataStreaming::FileBody
- Defined in:
- actionpack/lib/action_controller/metal/data_streaming.rb
Overview
Avoid having to pass an open file handle as the response body. Rack::Sendfile will usually intercept the response and uses the path directly, so there is no reason to open the file.
Instance Attribute Summary collapse
-
#to_path ⇒ Object
readonly
Returns the value of attribute to_path.
Instance Method Summary collapse
-
#each ⇒ Object
Stream the file’s contents if Rack::Sendfile isn’t present.
-
#initialize(path) ⇒ FileBody
constructor
A new instance of FileBody.
Constructor Details
#initialize(path) ⇒ FileBody
Returns a new instance of FileBody.
84 85 86 |
# File 'actionpack/lib/action_controller/metal/data_streaming.rb', line 84 def initialize(path) @to_path = path end |
Instance Attribute Details
#to_path ⇒ Object (readonly)
Returns the value of attribute to_path
82 83 84 |
# File 'actionpack/lib/action_controller/metal/data_streaming.rb', line 82 def to_path @to_path end |