I\'ve got a rails model using Paperclip that looks like this:
has_attached_file :image, :styles => { :normal => [\'857x392#\', :png] },
validates_attachment_size :image, :less_than => 25.megabytes, :unless => Proc.new {|m| m[:image].nil?}
works perfectly for me