files_controller.rb 181 Bytes
class FilesController < ApplicationController
  def download
    uploader = Note.find(params[:id]).attachment
    send_file uploader.file.path, disposition: 'attachment'
  end
end