class Paperclip::StringioAdapter

Attributes

content_type[W]

Public Class Methods

new(target) click to toggle source
# File lib/paperclip/io_adapters/stringio_adapter.rb, line 3
def initialize(target)
  @target = target
  cache_current_values
  @tempfile = copy_to_tempfile(@target)
end