class Paperclip::UploadedFileAdapter
Attributes
content_type_detector[RW]
Public Class Methods
new(target)
click to toggle source
# 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
Private Instance Methods
cache_current_values()
click to toggle source
# File lib/paperclip/io_adapters/uploaded_file_adapter.rb, line 20 def cache_current_values self.original_filename = @target.original_filename @content_type = determine_content_type @size = File.size(@target.path) end
content_type_detector()
click to toggle source
# File lib/paperclip/io_adapters/uploaded_file_adapter.rb, line 26 def content_type_detector self.class.content_type_detector end
determine_content_type()
click to toggle source
# File lib/paperclip/io_adapters/uploaded_file_adapter.rb, line 30 def determine_content_type content_type = @target.content_type.to_s.strip if content_type_detector content_type = content_type_detector.new(@target.path).detect end content_type end