Как я могу загрузить удаленный образ (протокол http, URL-адрес находится в атрибуте image_remote_url) и сохранить его в виде вложения в S3 через Paperclip?
class Product < ActiveRecord::Base
require 'open-uri'
attr_accessor :image_remote_url
has_attached_file :photo,
:storage => :s3,
:s3_credentials => "#{RAILS_ROOT}/config/s3.yml",
:path => ":class/:id/:style.:extension",
:bucket => "my_bucket",
:styles => {
:icon => "32x32#",
}
def fetch_image
# how should this method look ?
end
end
Как должен выглядеть метод "fetch_image"?