Is it possible to enforce a \'content type\' validation in paperclip without enforcing a \'presence\' validation (i.e. allow blanks)? I currently have:
class
validates_content_type accepts :if => Proc.new{|r| !r.content_type.blank?} in it's options hash, perhaps that would solve your problem.
:if => Proc.new{|r| !r.content_type.blank?}
http://rdoc.info/github/thoughtbot/paperclip#