user1781472
user1781472

Reputation: 517

Can paperclip be used for non image uploads

I am experimenting with paperclip to work with my rails application, most examples that I found are for image attachments, I have a use case where a user can upload a .json file and I want to attach it to my ActiveRecord model. Can paperclip be used for such a use case.

Upvotes: 0

Views: 683

Answers (1)

Benjamin Sullivan
Benjamin Sullivan

Reputation: 1476

Yes.

Simply going to the GitHub page reveals this.

https://github.com/thoughtbot/paperclip

"Easy file attachment management for ActiveRecord"

Upvotes: 2

Related Questions