エラーメッセージを変更する必要があります
私のモデルコードは次のとおりです。
class Resume < ActiveRecord::Base
attr_accessible :key_skills, :resume_category, :about_myself, :year_experience, :month_experience, :current_salary, :education_details, :jobs_preference, :resume_title,:avatar,:avatar_file_name,:avatar_content_type
has_attached_file :avatar,
:storage => :dropbox,
:dropbox_credentials => "#{Rails.root}/config/dropbox.yml",
:dropbox_options => {
:unique_filename => true
}
validates_format_of :avatar_file_name, :with => %r{\.(docx|doc|pdf)$}i,:message => "Accept only doc and pdf"
ただし、送信フォームに表示されるエラーメッセージは次のとおりです。「アバターファイル名はdocとpdfのみを受け入れます」
エラー メッセージが必要です:「doc と pdf のみを受け入れます」