I've been using (with success) the Hobo cookbook for attaching files
to Hobo models -
http://cookbook.hobocentral.net/plugins/paperclip_with_hobo
I'd like to make the uploaded file required.
I can't say:
has_attached_file :thing, :required
Well, I _can_, but only if I want an error message... This means that
I have to use "validate_presence_of " for each element of a file
upload (filename, size, etc), instead, I think?