Class: Ckeditor::Http::UploadedFile
- Inherits:
-
Object
- Object
- Ckeditor::Http::UploadedFile
- Defined in:
- lib/ckeditor/http.rb
Overview
Create tempfile 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.
11 12 13 14 15 16 17 |
# File 'lib/ckeditor/http.rb', line 11 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.
9 10 11 |
# File 'lib/ckeditor/http.rb', line 9 def content_type @content_type end |
#headers ⇒ Object
Returns the value of attribute headers.
9 10 11 |
# File 'lib/ckeditor/http.rb', line 9 def headers @headers end |
#original_filename ⇒ Object
Returns the value of attribute original_filename.
9 10 11 |
# File 'lib/ckeditor/http.rb', line 9 def original_filename @original_filename end |
#tempfile ⇒ Object
Returns the value of attribute tempfile.
9 10 11 |
# File 'lib/ckeditor/http.rb', line 9 def tempfile @tempfile end |
Instance Method Details
#open ⇒ Object
19 20 21 |
# File 'lib/ckeditor/http.rb', line 19 def open @tempfile.open end |
#path ⇒ Object
23 24 25 |
# File 'lib/ckeditor/http.rb', line 23 def path @tempfile.path end |
#read(*args) ⇒ Object
27 28 29 |
# File 'lib/ckeditor/http.rb', line 27 def read(*args) @tempfile.read(*args) end |
#rewind ⇒ Object
31 32 33 |
# File 'lib/ckeditor/http.rb', line 31 def rewind @tempfile.rewind end |
#size ⇒ Object
35 36 37 |
# File 'lib/ckeditor/http.rb', line 35 def size @tempfile.size end |