Sha256: 851f176a6d71f7b6f13a8786db677a9724a0a7542a36f75439068e80b6ed4b02
Contents?: true
Size: 774 Bytes
Versions: 3
Compression:
Stored size: 774 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 (MS Windows only). The "tar" command line program. At least one compression program, e.g. gzip, bzip2, zip, etc. == Installation rake test (optional) rake install (non-gem) or rake install_gem (gem) == Notes For further documentation and information, see the tar_external.txt file in the 'doc' directory.
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
archive-tar-external-1.2.3 | README |
archive-tar-external-1.2.2 | README |
archive-tar-external-1.2.1 | README |