红宝石 1.9.3 轨道 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