Skip to content

Instantly share code, notes, and snippets.

@iwada
Created September 8, 2011 14:40
Show Gist options
  • Save iwada/1203556 to your computer and use it in GitHub Desktop.
Save iwada/1203556 to your computer and use it in GitHub Desktop.
validates_attachment_size :pic, :less_than=>1.kilobyte,
:if => Proc.new { |imports| !imports.pic_file_name.blank? }
validates_attachment_presence :pic
validates_attachment_size :pic, :less_than => 5.megabytes
validates_attachment_content_type :pic, :content_type => ['image/jpeg', 'image/png']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment