Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created April 14, 2011 08:36
Show Gist options
  • Save igaiga/919131 to your computer and use it in GitHub Desktop.
Save igaiga/919131 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'zipruby'
buffer = Zip::Archive.open_buffer(Zip::CREATE) do |ar|
ar.add_buffer('zoo.txt', 'Hello, world!')
end
File.open('out.zip',"wb"){ |f|
f.write buffer
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment