Class: Sunrise::FileUpload::Http::UploadedFile
- Inherits:
-
Object
- Object
- Sunrise::FileUpload::Http::UploadedFile
- Defined in:
- lib/sunrise/file_upload/http.rb
Overview
Create file from hash
Instance Attribute Summary collapse
-
#content_type ⇒ Object
Returns the value of attribute content_type.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#original_filename ⇒ Object
Returns the value of attribute original_filename.
-
#tempfile ⇒ Object
Returns the value of attribute tempfile.
Instance Method Summary collapse
-
#initialize(hash) ⇒ UploadedFile
constructor
A new instance of UploadedFile.
- #open ⇒ Object
- #path ⇒ Object
- #read(*args) ⇒ Object
- #rewind ⇒ Object
- #size ⇒ Object
Constructor Details
#initialize(hash) ⇒ UploadedFile
Returns a new instance of UploadedFile.
12 13 14 15 16 17 18 |
# File 'lib/sunrise/file_upload/http.rb', line 12 def initialize(hash) @original_filename = hash[:filename] @content_type = hash[:type] @headers = hash[:head] @tempfile = hash[:tempfile] raise(ArgumentError, ':tempfile is required') unless @tempfile end |
Instance Attribute Details
#content_type ⇒ Object
Returns the value of attribute content_type.
10 11 12 |
# File 'lib/sunrise/file_upload/http.rb', line 10 def content_type @content_type end |
#headers ⇒ Object
Returns the value of attribute headers.
10 11 12 |
# File 'lib/sunrise/file_upload/http.rb', line 10 def headers @headers end |
#original_filename ⇒ Object
Returns the value of attribute original_filename.
10 11 12 |
# File 'lib/sunrise/file_upload/http.rb', line 10 def original_filename @original_filename end |
#tempfile ⇒ Object
Returns the value of attribute tempfile.
10 11 12 |
# File 'lib/sunrise/file_upload/http.rb', line 10 def tempfile @tempfile end |
Instance Method Details
#open ⇒ Object
20 21 22 |
# File 'lib/sunrise/file_upload/http.rb', line 20 def open @tempfile.open end |
#path ⇒ Object
24 25 26 |
# File 'lib/sunrise/file_upload/http.rb', line 24 def path @tempfile.path end |
#read(*args) ⇒ Object
28 29 30 |
# File 'lib/sunrise/file_upload/http.rb', line 28 def read(*args) @tempfile.read(*args) end |
#rewind ⇒ Object
32 33 34 |
# File 'lib/sunrise/file_upload/http.rb', line 32 def rewind @tempfile.rewind end |
#size ⇒ Object
36 37 38 |
# File 'lib/sunrise/file_upload/http.rb', line 36 def size @tempfile.size end |