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 a Rails 3 compatible, maintained version of attachment_fu.

Which of these options would be the best to use in terms of performance, how well maintained it is, how easy it is to upgrade from attachment_fu, and maybe is it going to be Rails 3.1 compatible? What are the major strengths and disadvantages of each one?

Any insight would be appreciated.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 14 down vote accepted

I've used both Paperclip and Carrierwave, and if I were you, I'd go for Carrierwave. It's a lot more flexible. I also love the fact that it doesnt clutter your models with configuration. You can define uploader classes instead. It allows you to easily reuse, extend etc your upload configuration.

Did you watch the Carrierwave railscast? http://railscasts.com/episodes/253-carrierwave-file-uploads

Paperclip is not a bad choice though, it's been the "best" choice for a long time. But Carrierwave definitely seems like the new generation ;)

link|improve this answer
2  
Thanks! I just watched the railscast, and the paperclip one as well. I think I'll be going with Carrierwave; it seems like that's what most people are saying to use. Now for the fun part upgrading from attachment_fu ... – keithepley Sep 14 '11 at 20:50
1  
There is a way to easily migrate from paperclip to carrierwave, but unfortunately, it's not the case for attachment_fu. From the carrierwave github page: "Unfortunately attachment_fu differs too much in philosophy for there to be a sensible compatibility mode. Patches for migrating from other solutions will be happily accepted." :( – Robin Sep 14 '11 at 21:34
1  
If you are trying to work with Rails 2.3.x and migrate from attachment_fu to CarrierWave first, I would suggest Paperclip over CarrierWave. When you are using the 0.4.x branch of CW with Rails 2.3.x, you can't set the content_type of a file on upload, which was a deal breaker for me. If you are migrating from attachment_fu and upgrading to rails 3, then you'll be fine, and CarrierWave is a great option. – wchrisjohnson Feb 19 at 18:40
feedback

I have used CarrierWave and after some hours of frustration I'm switching to Paperclip.

Here are the problems I have seen with CarrierWave:

  • You can't validate file size. There is a wiki article that explains how to do it, but it does not work.
  • Integrity validations do not work when using MiniMagick (very convenient if you are concerned about RAM usage). You can upload a corrupted image file and CarrierWave will throw an error at first, but the next time will swallow it.
  • You can't delete the original file. You can instead resize it, compress, etc. There is a wiki article explaining how to do it, but again it does not work.
  • It depends on external libraries such as RMagick or MiniMagick. Paperclip works directly with the convert command line (ImageMagick). So, if you have problems with Minimagick (I had), you will lose hours diving in Google searches. Both RMagick and Minimagick are abandoned at the time of this writing (I contacted the author of Minimagic, no response).
  • It needs some configuration files. This is seen as an advantage, but I don't like having single configuration files around my project just for one gem. Configuration in the model seems more natural to me. This is a matter of personal taste anyway.
  • If you find some bug and report it, the dev team is really absent and busy. They will tell you to fix bugs yourself. It seems like a personal project that is improved in spare time. For me it's not valid for a professional project with deadlines.
link|improve this answer
yep, paperclip is making a comeback, and the fact that it works directly with ImageMagick is a big plus – stephenmurdoch Apr 7 at 10:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.