Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
base64 zip 形式の pdf ファイルをデコードし、デコードしたデータを tempfile に書き込む必要があります。そして、レール上のローカルファイルシステムに保存する必要があります。
decoded_data=Base64.decode64(encoded_data) file_name = "test.zip" temp_file = Tempfile.new("filename-#{Time.now}") File.open(temp_file, 'wb') {|f| f.write(decoded_data)} send_file temp_file.path, :type => 'application/zip', :filename => file_name