1

This is a follow-up question to Uploading Pictures Ruby on Rails

I have read about Paperclip and watched the railscast on it. It seems to come highly recommended, but the post is quite old and most pages I am finding about it are from 2009ish.

I was wondering what recommendations people had for uploading and managing photos in Rails 3? Still Paperclip, or are there new gems or methods that I should consider in building photo functionality into a site?

Community
  • 1
  • 1
jay
  • 12,066
  • 16
  • 64
  • 103

1 Answers1

4

CarrierWave is another option as well. I like that its a little more de-coupled from your models than Paperclip.

Cody Caughlan
  • 32,456
  • 5
  • 63
  • 68
  • interesting!! it looks also to be a much simpler set-up/ much quicker to learn. Would you agree? And, do you know how well this works on heroku? – jay Dec 16 '11 at 14:42
  • Sorry I have no experience with Heroku. The setup is super easy, yes. – Cody Caughlan Dec 16 '11 at 17:44