has_attached_file :attachment validates_format_of :attachment_file_name,:with => %r{\.(docx|doc|pdf)$}i
编辑:
或者,要用回形针验证它:
validates_attachment_content_type :attachment,:content_type => 'text/plain'
^会自动生成内容类型不匹配错误.