14 lines
192 B
Ruby
Executable file
14 lines
192 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
$: << "../lib"
|
|
|
|
require 'zip/zip'
|
|
|
|
include Zip
|
|
|
|
ZipOutputStream.open('simple.zip') {
|
|
|zos|
|
|
ze = zos.put_next_entry 'entry.txt'
|
|
zos.puts "Hello world"
|
|
}
|