Are you really trying to use rubyzip with 1.9.2? Everything seems to work fine for me:
>> RUBY_VERSION #=> "1.9.2" >> require 'zip/zip' #=> true >> Zip::ZipFile.foreach(File.expand_path("~/Downloads/Archive.zip")) { |f| pf } #=> [bartxt, footxt] bar.txt foo.txt
source share