Method: ActionDispatch::Http::UploadedFile#read
- Defined in:
- actionpack/lib/action_dispatch/http/upload.rb
#read(length = nil, buffer = nil) ⇒ Object
Shortcut for tempfile.read.
63 64 65 |
# File 'actionpack/lib/action_dispatch/http/upload.rb', line 63 def read(length = nil, buffer = nil) @tempfile.read(length, buffer) end |