rmagick error on heroku
- by nvano
i'm cropping images with paperclip.
i have a custom module which works great on my local machine (copied from railscast 182).
//file: lib/paperclip_processors/cropper.rb
module Paperclip
class Cropper < Thumbnail
def transformation_command
if crop_command
crop_command + super.sub(/ -crop \S+/, '')
else
super
…