Class: Paperclip::UploadedFileAdapter
- Inherits:
-
AbstractAdapter
- Object
- AbstractAdapter
- Paperclip::UploadedFileAdapter
- Defined in:
- lib/paperclip/io_adapters/uploaded_file_adapter.rb
Constant Summary
Constants inherited from AbstractAdapter
AbstractAdapter::OS_RESTRICTED_CHARACTERS
Class Attribute Summary collapse
-
.content_type_detector ⇒ Object
Returns the value of attribute content_type_detector.
Attributes inherited from AbstractAdapter
#content_type, #original_filename, #size
Instance Method Summary collapse
-
#initialize(target) ⇒ UploadedFileAdapter
constructor
A new instance of UploadedFileAdapter.
Methods inherited from AbstractAdapter
#assignment?, #fingerprint, #inspect, #nil?, #read
Constructor Details
#initialize(target) ⇒ UploadedFileAdapter
Returns a new instance of UploadedFileAdapter.
3 4 5 6 7 8 9 10 11 12 |
# File 'lib/paperclip/io_adapters/uploaded_file_adapter.rb', line 3 def initialize(target) @target = target cache_current_values if @target.respond_to?(:tempfile) @tempfile = copy_to_tempfile(@target.tempfile) else @tempfile = copy_to_tempfile(@target) end end |
Class Attribute Details
.content_type_detector ⇒ Object
Returns the value of attribute content_type_detector.
15 16 17 |
# File 'lib/paperclip/io_adapters/uploaded_file_adapter.rb', line 15 def content_type_detector @content_type_detector end |