CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 23 Aug 2025 04:21:34 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100615024056
location: https://web.archive.org/web/20100615024056/https://github.com/nbibler/rubyzip
server-timing: captures_list;dur=0.536473, exclusion.robots;dur=0.020524, exclusion.robots.policy;dur=0.008713, esindex;dur=0.011036, cdx.remote;dur=7.678049, LoadShardBlock;dur=142.299250, PetaboxLoader3.datanode;dur=47.270628, PetaboxLoader3.resolve;dur=39.553808
x-app-server: wwwb-app224
x-ts: 302
x-tr: 178
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 23 Aug 2025 04:21:35 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 15 Jun 2010 02:40:56 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "6e363936e1be1e02f8afaf1195021b91"
x-archive-orig-x-runtime: 51ms
x-archive-orig-content-length: 24209
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 15 Jun 2010 02:40:56 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 07 Oct 2009 23:18:25 GMT", ; rel="prev memento"; datetime="Tue, 20 Apr 2010 09:51:33 GMT", ; rel="memento"; datetime="Tue, 15 Jun 2010 02:40:56 GMT", ; rel="next memento"; datetime="Thu, 24 Nov 2011 19:27:05 GMT", ; rel="last memento"; datetime="Tue, 13 Jun 2023 15:28:36 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_16_20100614214633_crawl103-c/52_16_20100615024034_crawl101.arc.gz
server-timing: captures_list;dur=0.640651, exclusion.robots;dur=0.021048, exclusion.robots.policy;dur=0.008868, esindex;dur=0.012688, cdx.remote;dur=169.703649, LoadShardBlock;dur=174.747489, PetaboxLoader3.datanode;dur=151.176730, PetaboxLoader3.resolve;dur=142.453482, load_resource;dur=136.244608
x-app-server: wwwb-app224
x-ts: 200
x-tr: 532
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
nbibler's rubyzip at master - GitHub
nbibler / rubyzip
- Source
- Commits
- Network (5)
- Issues (0)
- Downloads (1)
- Wiki (3)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
rubyzip /
name | age | message | |
---|---|---|---|
![]() |
ChangeLog | Fri Nov 20 23:12:27 -0800 2009 | Added .txt file extensions, remove executable b... [postmodern] |
![]() |
NEWS | Loading commit data... ![]() |
|
![]() |
README | ||
![]() |
README.rdoc | ||
![]() |
Rakefile | ||
![]() |
TODO | ||
![]() |
install.rb | ||
![]() |
lib/ | ||
![]() |
samples/ | ||
![]() |
test/ |
README.rdoc
= rubyzip rubyzip is a ruby library for reading and writing zip files. = Install If you have rubygems you can install rubyzip directly from the gem repository gem install rubyzip Otherwise obtain the source (see below) and run ruby install.rb To run the unit tests you need to have test::unit installed rake test = Documentation There is more than one way to access or create a zip archive with rubyzip. The basic API is modeled after the classes in java.util.zip from the Java SDK. This means there are classes such as Zip::ZipInputStream, Zip::ZipOutputStream and Zip::ZipFile. Zip::ZipInputStream provides a basic interface for iterating through the entries in a zip archive and reading from the entries in the same way as from a regular File or IO object. ZipOutputStream is the corresponding basic output facility. Zip::ZipFile provides a mean for accessing the archives central directory and provides means for accessing any entry without having to iterate through the archive. Unlike Java's java.util.zip.ZipFile rubyzip's Zip::ZipFile is mutable, which means it can be used to change zip files as well. Another way to access a zip archive with rubyzip is to use rubyzip's Zip::ZipFileSystem API. Using this API files can be read from and written to the archive in much the same manner as ruby's builtin classes allows files to be read from and written to the file system. rubyzip also features the zip/ziprequire.rb[link:files/lib/zip/ziprequire_rb.html] module which allows ruby to load ruby modules from zip archives. For details about the specific behaviour of classes and methods refer to the test suite. Finally you can generate the rdoc documentation or visit https://rubyzip.sourceforge.net. = License rubyzip is distributed under the same license as ruby. See https://www.ruby-lang.org/en/LICENSE.txt = Website and Project Home https://rubyzip.sourceforge.net https://sourceforge.net/projects/rubyzip == Download (tarballs and gems) https://sourceforge.net/project/showfiles.php?group_id=43107&package_id=35377 = Authors Thomas Sondergaard (thomas at sondergaard.cc) Technorama Ltd. (oss-ruby-zip at technorama.net) extra-field support contributed by Tatsuki Sugiura (sugi at nemui.org)