paperclip running in passenger
it’s necessary set the correct path of imagemagick. in os x (dev) e linux (production):
1 if RAILS_ENV == "development" 2 Paperclip.options[:image_magick_path] = '/opt/local/bin/' 3 else 4 Paperclip.options[:image_magick_path] = '/usr/bin/' 5 end