2004-12-12 18:22:39 +08:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
2005-02-17 01:47:44 +08:00
|
|
|
$: << "../lib"
|
2004-12-12 18:22:39 +08:00
|
|
|
|
2014-03-31 19:20:27 +08:00
|
|
|
require 'zip'
|
2004-12-12 18:22:39 +08:00
|
|
|
|
|
|
|
include Zip
|
|
|
|
|
2013-06-03 15:56:24 +08:00
|
|
|
OutputStream.open('simple.zip') {
|
2004-12-12 18:22:39 +08:00
|
|
|
|zos|
|
2015-03-21 04:13:38 +08:00
|
|
|
zos.put_next_entry 'entry.txt'
|
2004-12-12 18:22:39 +08:00
|
|
|
zos.puts "Hello world"
|
2005-02-17 01:47:44 +08:00
|
|
|
}
|