I have the following paperclip setup in one of my models: has_attached_file :avatar,:styles => { :large =>\"#{APP_CONFIG[\"uploads\"][\"images\"][\"size\"][\"large\"]}>\",
I\'m having a problem getting my rspec controller tests to pass with attr_accessible in Rspec...but not from the console.
When a user uploads an image in my rails app imagemagick handles two transformations: has_attached_file :photo, :styles => { :listsize => \"50x50#\", :articlesize => \"300x300\" },
I\'m using paperclip with my rails 3 app. I want to append a random string, nothing to long or crazy at the end of the file to cache bust the CDN. Anyone know a real simple way to do this?
I\'m trying to upload some photos into my Rails app. But I\'m getting: Paperclip::NotIdentifiedByImageMagickError in Admin::ImagesController#create
I\'m pretty new to rails and seem to be having an issue with the paperclip gem. I installed the gem and it works well in development (localhost:3000) but when I\'m running it on the heroku server, for
right now I have something like this for my s3.yml: developmen开发者_C百科t: bucket: mydev access_key_id: xxxxxxxx
I am trying to setup Amazon S3 with paperclip on heroku. I have everything working fine on my machine. I upload from my machine to S3 without any issues. I pushed my code to heroku and am seeing two i
I am running Paperclip 2.3.11 and ImageMagick 6.7.1-1. I am uploading images to an Amazon S3 account. If I upload a .png file it works fine, if I upload a .jpg it does not.
I am using Ruby on Rails 3.0.9 and Paperclip 2.3. Since the Paperclip gem offers only two validation methods (validates_attachment_presence and validates_attachment_content_type) I开发者_JS百科 am try