Copy binary files to dir and zip

'src' dir contains 2 binary files (mp3s)

I want to copy the files from 'src' into a new dir and then zip it.

The copy into a new dir is fine, but

I can't seem to get the new dir in to the zip.

Any clues?
Thanks!

<----Code----->

require 'rubygems'
require 'zip/zipfilesystem'
require 'FileUtils'

stuff = FileUtils.cp_r 'src/.', 'order' #this copies the files
fine...

Zip::ZipFile.open('stuff.zip', Zip::ZipFile::CREATE) do |zip|
  zip.file.open('stuff.zip', 'w') { |f1| f1 << 'order'}
end

···

--
Posted via http://www.ruby-forum.com/.