Class: Paperclip::UriAdapter

Inherits:
AbstractAdapter show all
Defined in:
lib/paperclip/io_adapters/uri_adapter.rb

Direct Known Subclasses

HttpUrlProxyAdapter

Constant Summary

Constants inherited from AbstractAdapter

AbstractAdapter::OS_RESTRICTED_CHARACTERS

Instance Attribute Summary collapse

Attributes inherited from AbstractAdapter

#content_type, #original_filename, #size

Instance Method Summary collapse

Methods inherited from AbstractAdapter

#assignment?, #fingerprint, #inspect, #nil?, #read

Constructor Details

#initialize(target) ⇒ UriAdapter

Returns a new instance of UriAdapter.



7
8
9
10
11
12
# File 'lib/paperclip/io_adapters/uri_adapter.rb', line 7

def initialize(target)
  @target = target
  @content = download_content
  cache_current_values
  @tempfile = copy_to_tempfile(@content)
end

Instance Attribute Details

#content_type=(value) ⇒ Object (writeonly)

Sets the attribute content_type

Parameters:

  • value

    the value to set the attribute content_type to.



5
6
7
# File 'lib/paperclip/io_adapters/uri_adapter.rb', line 5

def content_type=(value)
  @content_type = value
end