RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: idvix
Site: http://idvix.com
Hi,
I need files to be renamed before uploading I get this to work :
def key @key ||= "uploads/#{SecureRandom.hex}" end
But I need the extension at the end and this doesn't work:
def key @key ||= "uploads/#{SecureRandom.hex}" + File.extname("${filename}") end
Thanks for the help
Hi,
I need files to be renamed before uploading
I get this to work :
But I need the extension at the end and this doesn't work:
Thanks for the help