I'm working on a rails 3 app that uses paperclip to save audio files to Amazon S3. I'm saving lots of mp3 files that are being transferred from a url, but they are being transferred without an extension. I know these files are mp3 files, but in paperclip they do not have an extension. How can I set the extension to mp3 if there is no extension provided?
has_attached_file :audio,
:storage => :s3,
:s3_credentials => "#{Rails.root}/config/aws.yml",
:hash_secret => 'secret',
:hash_data => ':class/:attachment/:id',
:path => ':rails_env/:class/:id/:style/:hash.:extension'
def transfer_to_s3
io = open(URI.parse(recording_url + '.mp3'))
self.audio = io
self.save
end
