I'm using rails 3 + paperclip + s3 (private bucket) to allow users to upload a file.
What's broken is user's can upload files w/o extentions like the rails gemfile which is just "gemfile" not "gemfile.txt" When you upload this file, paperclip does not set the attachment_content_type.
I'm determining the content_type like so:
self.attachment.instance_write(:content_type, MIME::Types.type_for(self.attachment_file_name).to_s)
Is there a better way to do this that is more reliable and solves for the above bug? Thanks