Hi,
I''m trying to set up an action that will send an image to the browser
as
an attachment for download using paperclip. Sadly, I keep getting
stuck. Insead, I keep sending an empty image to the browser. Anyone
have any luck or any ideas?
def download_image
art = Art.find(params[:id])
send_file art.list_image.url(:original), :type =>
art.list_image_content_type, :disposition => ''attachment''
end
Thanks so much.
--
Posted via http://www.ruby-forum.com/.