What zip library works well with Ruby 1.9.2?

后端 未结 3 1586
不思量自难忘°
不思量自难忘° 2021-01-23 04:34

I used the rubyzip gem in Ruby 1.8.7 before, but I heard rubyzip doesn\'t work well with ruby 1.9.2.

What zip libraries work well with Ruby 1.9.2?

3条回答
  •  离开以前
    2021-01-23 05:31

    Have you actually tried using rubyzip with 1.9.2? 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| p f } 
    #=> [bartxt, footxt]
    bar.txt
    foo.txt
    

提交回复
热议问题