Elliot
Elliot

Reputation: 13855

Approaches to adding attachments in rails3?

I'm wondering what are some good solutions to adding attachments/files to records in rails3?

I'm talking about any kind of file, with user set upload limits.. Is this something paperclip can handle? If not are there any other/better/different solutions out there that people recommend I look into?

Or does anyone have any pointers for how I might go about this from scratch?

Thanks!

Upvotes: 0

Views: 64

Answers (1)

fl00r
fl00r

Reputation: 83680

You can use or paperclip or CarrierWave gems:

Usefull Ryan's screencasts:

Both of them can handle a number of useful validations

Upvotes: 5

Related Questions