Ruby 1.9.3 Rails 3.2.11。ails zip ライブラリを要求する必要がありますが、その方法がわかりません。これは、コントローラーの単一のアクションでのみ必要なコードです。
file_name = "natfiles.zip"
t = Tempfile.new("temp_natfiles")
Zip::ZipOutputStream.open(t.path) do |z|
z.put_next_entry('NAT00010')
z.print IO.read("tmp/nat00010")
end
send_file t.path, :type => 'application/zip',
:disposition => 'attachment',
:filename => file_name
t.close