I need an interface on my Rails 3 app to upload multiple files to Amazon S3 (because i\'m on heroku), possibly with progress bars.
I\'m currently uploading an image with PaperC开发者_如何学JAVAlip and ImageMagick. I would like to get the image\'s average color so I\'m doing this (with a before_create hook):
I use Paperclip 2.3.11 in my Rails 3 application, and have the following validation: validates_attachment_size :asset, :less_than => 2.megabytes,
I have an app that lives in the Heroku ecosystem and it uses paperclip\'s S3 storage mechanism. Have any of you conducted performance tests of using send_file vs. redirect_to when sending file data vi
I\'m trying to integrate Yoxview to my Rails 3 application that uses Paperclip to upload pictures. The main problem is that the pictures (both original and thumbs) are not in the public area, i.e. th
I\'m trying to seed my database with member profile开发者_如何学Gos and also member profile pictures with S3 and paperclip but it doesn\'t seem to be working.
I\'m getting started with Paperclip and can\'t figure out something: why isn\'t this form showing up?
I updated views/devise/registrations/edit.html.erb to support a paperclip photo for the user (User.photo):
I\'ve been trying to experiment with having avatars for users in my app, and I\'ve set this up where a user can upload an image using Paperclip. Paperclip has a nice default functionality where you ca
I am trying to allowing cropping on my app. However, when I run this method: def avatar_geometry(style = :original)