up vote 4 down vote favorite
1
share [g+] share [fb]

Lets say I have a model called Recipe. Each Recipe has several photos, a PDF file and a video. Is there a plugin out there that lets me have something as simple as Recipe.photos, Recipe.photos.first.filename, Recipe.pdf.filename, Recipe.video.filesize and so on?

link|improve this question
feedback

4 Answers

Not sure if this helps, but check out Paperclip, a Rails + ActiveRecord plugin.

link|improve this answer
feedback

Paperclip is supposed to handle multiple files, although I have tried that aspect of it yet. Uploading multiple images with Rails and Paperclip seems to explain how to do it... also ... Uploading multiple images with paperclip ...

link|improve this answer
feedback

Paperclip is the attachment tool to use. As for mulitple uploads that is tricker. You will either need to use SWFUpload (name?) the flash front end for multiple upload, or you will need to roll your own system.

On a project I had an app that was all about photos so I wrote an uploader/unzipper that you would upload a zip of photos to and system would unzip them and insert them into the system for the admin users.

Good Luck.

link|improve this answer
feedback

I am using restful_authentication + attachment_fu + SWFUpload, which handles multiple attachments VERY well IMO.

Here's your quick start guide: http://github.com/davidsouth/rails-swfupload/tree/master

link|improve this answer
feedback

Your Answer

 
or
required, but never shown