Rails CKEditor and Paperclip without the ImageMagick

Tried to install Rails CKEditor w/ image/file upload today:

[paperclip] An error was received while processing: #<Paperclip::NotIdentifiedByImageMagickError: /var/folders/... is not recognized by the 'identify' command.>

Turns out the default code on Rails CKEditor tells Paperclip to auto-generate a thumbnail image for you, which requires ImageMagick.

:styles => { :content => '575>', :thumb => '100x100' }

Since I don’t need auto-generated thumbnails, nor do I feel like installing an entire library, I just took out that line in the Picture model (picture.rb) and everything worked.