validates_presence_of :photo
But, this does not guarantee that what is uploaded actually is an image.
Henry
--
Henry Baragar
Instantiated Software
:required on a field is really just a shorthand for validates_presence_of (a standard AR validation). There are some attachment-specific validations in Paperclip, but they apparently aren't cool enough to mention in the README. Here's the rdoc:
http://rdoc.info/gems/paperclip/2.3.12/Paperclip/ClassMethods
--Matt Jones