[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

looking for "tar" file reader library

Jeff Mallatt

4/4/2007 7:13:00 PM

I'm looking for a Ruby "tar" format file reader.

I have not found much out there. So far, just ruby-tar-0.1.0 at
http://www.aagh.net/files... -- which is a program, though I
could library-ize it without much effort. It also seems to have not
been maintained for five years.

I was wondering if anyone knew of something that was already a library?

Thanks in advance.


2 Answers

Austin Ziegler

4/4/2007 8:02:00 PM

0

On 4/4/07, Jeff Mallatt <jjm@codewell.com> wrote:
> I'm looking for a Ruby "tar" format file reader.
>
> I have not found much out there. So far, just ruby-tar-0.1.0 at
> http://www.aagh.net/files... -- which is a program, though I
> could library-ize it without much effort. It also seems to have not
> been maintained for five years.
>
> I was wondering if anyone knew of something that was already a library?

Look in the Ruwiki project; you'll find Archive::Tar::Minitar. I hope
to move it to the "archive" project soon.

-austin
--
Austin Ziegler * halostatue@gmail.com * http://www.halo...
* austin@halostatue.ca * http://www.halo...feed/
* austin@zieglers.ca

_why

4/4/2007 8:04:00 PM

0

On Thu, Apr 05, 2007 at 04:12:31AM +0900, Jeff Mallatt wrote:
> I'm looking for a Ruby "tar" format file reader.

Austin's minitar is a gem:
<http://rubyforge.org/frs/?group_id=84&release_...

_why