The attachment-fu tag has no wiki summary.
31
votes
3answers
10k views
Rails 3 paperclip vs carrierwave vs dragonfly vs attachment_fu
I'm working on upgrading a Rails 2.3.11, Ruby 1.9.2 app to Rails 3.0.10, and attachment_fu no longer works.
I'm looking at changing to paperclip, carrierwave, or dragonfly for file uploads, or maybe ...
6
votes
3answers
2k views
attachment_fu testing in rails 3
I am trying to write specs for a working file upload functionality using attachment_fu. However, the sample code given by the author for testing requires me to require action_controller/test_process ...
12
votes
4answers
5k views
Attachment_fu or Paperclip for Rails3
I have just upgraded to rails3 and when I installed my usual attachment_fu plugin failed. So I started googling it and although I did manage to find a rails3 version there seemed to be a lot more ...
5
votes
1answer
3k views
How to upload images on heroku server using attachment_fu plugin
I have an app in Heroku, I need simple file storage for uploaded images for this I
used send_data using attachment_fu plugin.
After that I have used the tmp/ directory to write this file and want to ...
3
votes
2answers
1k views
What is the best file upload/attachment plugin rails?
What are the pros and cons between PaperClip and Attachment_fu ?
Are there any other plugins that would you recommend ?
Is possible to support multiple file uploads and progress feedback on upload ...
3
votes
2answers
572 views
attachment_fu: Don't reload thumbnails
I've got a nice little "photos" class that has attached images. When I go to the page to sort the photos' order, it iterates though each photo, sets the new "sort" value, and saves it. All good so ...
2
votes
1answer
481 views
Systematic way to upgrade from attachment_fu to carrierwave?
I'm working on upgrading an app to Rails 3, and attachment_fu is broken so I'm moving to carrierwave. Is there a systematic process that I can go through to upgrade from attachment_fu to carrierwave? ...
0
votes
1answer
924 views
Alter :path_prefix dynamically when calling has_attachment via Attachment Fu plugin
By default Attachment Fu stores uploaded files in "public/#{table_name}". I want to modify this to be something like "public/#{table_name}/#{site_id}", where site_id is a property of the model. Note ...
2
votes
4answers
475 views
What is involved with changing attachment_fu's storage scheme?
I have a rails application that is using attachment_fu. Currently, it is using :file_system for storage, but I want to change it to :s3, to allow for better scaling as more files get uploaded.
What ...