Sha256: 5adf1bca95f94eea52db27ce4d0670d6ae25e22431e74e81768c70e5501c68a0

Contents?: true

Size: 881 Bytes

Versions: 1

Compression:

Stored size: 881 Bytes

Contents

== Description
   A very simple tar/compress package that uses calls to external programs
   to do the work.
   
== Synopsis
   require "archive/tar_external"
   include Archive
   
   # The long way
   t = Tar::External.new("test.tar")
   t.create_archive("*.rb")
   t.compress_archive("gzip")
   
   # The short way
   t = Tar::External.new("test.tar", "*.rb", "gzip")
   
== Prerequisites
   Ruby 1.8.0 or later.
   The win32-open3 package (Windows only).
   The "tar" command line program.
   At least one compression program, e.g. gzip, bzip2, zip, etc.
   
== Installation
=== Standard Installation
   ruby test/tc_archive.rb (optional)
   ruby install.rb

=== Gem Installation
   ruby archive-tar-external.gemspec
   gem install archive-tar-external-XXX.gem
   
== Notes
   For further documentation and information, see the tar_external.txt file
   in the 'doc' directory.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archive-tar-external-1.2.0 README