railsのattachment_fuプラグインでzipをアップロードしようとして、contenttypeに’application/zip’を指定したけど、
「Content type is not included in the list」のエラーメッセージが・・・。
contenttypeの指定を削除したら動いたけど、これでいいのか?
環境:WindowsXP
ruby 1.8.7
rails 2.3.11
class Mugshot < ActiveRecord::Base
has_attachment
:content_type => ‘application/zip’, # ←この行を削除
:storage => :file_system,
:max_size => 3.gigabytes
validates_as_attachment
end