Zip/Ruby 0.2.4

http://zipruby.rubyforge.org/
https://rubyforge.org/projects/zipruby/

  • ちまちま書き込むAPIを追加
source = %w(London Bridge is falling down)

Archive.open('test.zip') do |ar|
  ar.add('lb.txt') do
    source.shift
  end
end

これでとりあえず一通りの機能はそろったかな?