archive-tar-external 1.2.3 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +94 -87
- data/MANIFEST +7 -7
- data/README +47 -29
- data/Rakefile +26 -26
- data/archive-tar-external.gemspec +40 -40
- data/doc/tar_external.txt +109 -136
- data/lib/archive/tar/external.rb +281 -0
- data/test/test_archive_tar_external.rb +203 -201
- metadata +14 -4
- data/lib/archive/tar_external.rb +0 -303
data/CHANGES
CHANGED
@@ -1,87 +1,94 @@
|
|
1
|
-
== 1.
|
2
|
-
*
|
3
|
-
|
4
|
-
*
|
5
|
-
*
|
6
|
-
*
|
7
|
-
|
8
|
-
== 1.2.
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
*
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
* Added
|
22
|
-
*
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
* The
|
28
|
-
*
|
29
|
-
*
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
*
|
34
|
-
|
35
|
-
|
36
|
-
*
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
*
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
*
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
*
|
54
|
-
|
55
|
-
*
|
56
|
-
|
57
|
-
*
|
58
|
-
*
|
59
|
-
|
60
|
-
*
|
61
|
-
|
62
|
-
*
|
63
|
-
*
|
64
|
-
|
65
|
-
|
66
|
-
*
|
67
|
-
*
|
68
|
-
|
69
|
-
|
70
|
-
*
|
71
|
-
|
72
|
-
|
73
|
-
* Added
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
*
|
78
|
-
|
79
|
-
|
80
|
-
*
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
*
|
85
|
-
|
86
|
-
|
87
|
-
*
|
1
|
+
== 1.3.0 - 16-Jan-2010
|
2
|
+
* Altered the source code layout, which requires a change in your require
|
3
|
+
line. It's now require 'archive/tar/external'.
|
4
|
+
* Moved some content from the .txt file to the README.
|
5
|
+
* Updated one test to use a skip as needed.
|
6
|
+
* Moved source code to github.
|
7
|
+
|
8
|
+
== 1.2.3 - 25-Sep-2009
|
9
|
+
* Fixed a packaging bug.
|
10
|
+
* Added cygwin and mingw to Windows checks.
|
11
|
+
* Now requires open3 properly for Ruby 1.9 on Windows.
|
12
|
+
* Minor modifications to the gemspec.
|
13
|
+
* Added the 'gem' rake task.
|
14
|
+
|
15
|
+
== 1.2.2 - 28-Jul-2009
|
16
|
+
* Compatibility fixes for Ruby 1.9.x and JRuby.
|
17
|
+
* Singleton methods that were previously synonyms are now true aliases.
|
18
|
+
* License changed to Artistic 2.0.
|
19
|
+
* Several gemspec updates, including an updated description, the addition
|
20
|
+
of a license and development dependencies and refactored platform handling.
|
21
|
+
* Added test-unit and ptools as development dependencies for the test suite.
|
22
|
+
* Some refactoring of the test suite to take advantage of some of the features
|
23
|
+
in test-unit 2.x.
|
24
|
+
* Renamed the test file to test_archive_tar_external.rb.
|
25
|
+
|
26
|
+
== 1.2.1 - 30-Jul-2007
|
27
|
+
* The TarError class is now Tar::Error.
|
28
|
+
* Added a Rakefile with tasks for installation and testing.
|
29
|
+
* Removed the install.rb file. Installation is now handled by the Rakefile.
|
30
|
+
* Documentation updates.
|
31
|
+
|
32
|
+
== 1.2.0 - 7-Apr-2006
|
33
|
+
* Project renamed 'archive-tar-external'.
|
34
|
+
* The 'Tar' class is now Tar::External.
|
35
|
+
* The RAA project name is now tar-external.
|
36
|
+
* Added the Tar::External.uncompress_archive class method for archives
|
37
|
+
that already exist.
|
38
|
+
* Added the Tar::External.extract_archive class method for tarballs
|
39
|
+
that already exist.
|
40
|
+
* Added the Tar::External#compressed_archive_name= method.
|
41
|
+
|
42
|
+
== 1.1.1 - 1-Mar-2006
|
43
|
+
* Replaced PLATFORM with RUBY_PLATFORM since the former is deprecated
|
44
|
+
for Ruby 1.9/2.0.
|
45
|
+
|
46
|
+
== 1.1.0 - 10-Feb-2006
|
47
|
+
* Internal refactoring changes - now uses block form of Open3.popen3.
|
48
|
+
* Most methods now return self instead of true (better for chaining).
|
49
|
+
* Corresponding test suite changes.
|
50
|
+
|
51
|
+
== 1.0.0 - 1-Sep-2005
|
52
|
+
* Moved project to RubyForge.
|
53
|
+
* Modified the constructor to accept a file pattern. If present, becomes
|
54
|
+
a shortcut for Tar.new + Tar#create_archive.
|
55
|
+
* Constructor merely calls .to_s on the archive name, rather than validating
|
56
|
+
that it's a String argument.
|
57
|
+
* You can now specify the tar program you wish to use, e.g. "tar", "gtar", etc.
|
58
|
+
* Fixed a bug in Tar#uncompress_archive where it wasn't finding the appropriate
|
59
|
+
compressed archive name.
|
60
|
+
* Added aliases for most methods whereby you can omit the word "archive" in
|
61
|
+
the method name now, e.g. Tar#compress is an alias for Tar#compress_archive.
|
62
|
+
* Now more polite about closing open handles from Open3.
|
63
|
+
* The (rdoc) documentation is now inlined.
|
64
|
+
* Removed the tarsimple.rd and tarsimple.html files.
|
65
|
+
* Made most documentation rdoc friendly.
|
66
|
+
* Updated the README and MANIFEST files.
|
67
|
+
* Removed the INSTALL file. The installation instructions are now included
|
68
|
+
in the README file.
|
69
|
+
* Test suite updates.
|
70
|
+
* Added a gemspec.
|
71
|
+
|
72
|
+
== 0.3.0 - 10-Aug-2004
|
73
|
+
* Added the update_archive() method.
|
74
|
+
* The expand_archive() method has been renamed to extract_archive().
|
75
|
+
For backward's compatability, an alias remains so you may use
|
76
|
+
either method name.
|
77
|
+
* The extract_archive() method now accepts a list of file names as
|
78
|
+
an argument. If present, then only those file names are extracted.
|
79
|
+
If not, then the entire archive is extracted.
|
80
|
+
* Added corresponding tests and documentation updates.
|
81
|
+
|
82
|
+
== 0.2.0 - 9-Aug-2004
|
83
|
+
* Added the add_to_archive() method.
|
84
|
+
* Removed the VERSION() class method. Use the constant instead.
|
85
|
+
* Changed "TarException" and "CompressionException" to "TarError" and
|
86
|
+
"CompressError", respectively.
|
87
|
+
* Moved rd documentation into its own file under the 'doc' directory.
|
88
|
+
* Added unit tests and updated the docs.
|
89
|
+
* Removed the html file. You can generate that on your own if you
|
90
|
+
wish using the rd2 tool.
|
91
|
+
* Added warranty information.
|
92
|
+
|
93
|
+
== 0.1.0 - 24-Jan-2003
|
94
|
+
* Initial Release
|
data/MANIFEST
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
* MANIFEST
|
2
|
-
* CHANGES
|
3
|
-
* INSTALL
|
4
|
-
* Rakefile
|
5
|
-
* archive-tar-external.gemspec
|
6
|
-
* doc/tar_external.txt
|
7
|
-
* lib/archive/tar_external.rb
|
1
|
+
* MANIFEST
|
2
|
+
* CHANGES
|
3
|
+
* INSTALL
|
4
|
+
* Rakefile
|
5
|
+
* archive-tar-external.gemspec
|
6
|
+
* doc/tar_external.txt
|
7
|
+
* lib/archive/tar_external.rb
|
8
8
|
* test/test_archive_tar_external.rb
|
data/README
CHANGED
@@ -1,29 +1,47 @@
|
|
1
|
-
== Description
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
1
|
+
== Description
|
2
|
+
A simple tar & compress library that nicely wraps external system calls.
|
3
|
+
|
4
|
+
== Installation
|
5
|
+
gem install archive-tar-external
|
6
|
+
|
7
|
+
== Synopsis
|
8
|
+
require 'archive/tar/external'
|
9
|
+
include Archive
|
10
|
+
|
11
|
+
# The long way
|
12
|
+
t = Tar::External.new('test.tar')
|
13
|
+
t.create_archive('*.rb')
|
14
|
+
t.compress_archive('gzip')
|
15
|
+
|
16
|
+
# The short way
|
17
|
+
t = Tar::External.new('test.tar', '*.rb', 'gzip')
|
18
|
+
|
19
|
+
== Prerequisites
|
20
|
+
The win32-open3 library (MS Windows only).
|
21
|
+
The 'tar' command line program.
|
22
|
+
At least one compression program, e.g. gzip, bzip2, zip, etc.
|
23
|
+
|
24
|
+
== Known Issues
|
25
|
+
The tar program that comes with Solaris will not raise an error if you
|
26
|
+
try to expand a file from an archive that does not contain that file.
|
27
|
+
|
28
|
+
If you come across any other issues, please report them on the project
|
29
|
+
page at http://www.rubyforge.org/projects/shards.
|
30
|
+
|
31
|
+
== Future Plans
|
32
|
+
Anything folks are looking for?
|
33
|
+
|
34
|
+
== License
|
35
|
+
Artistic 2.0
|
36
|
+
|
37
|
+
== Warranty
|
38
|
+
This package is provided "as is" and without any express or
|
39
|
+
implied warranties, including, without limitation, the implied
|
40
|
+
warranties of merchantability and fitness for a particular purpose.
|
41
|
+
|
42
|
+
== Copyright
|
43
|
+
(C) 2003 - 2010 Daniel J. Berger
|
44
|
+
All Rights Reserved
|
45
|
+
|
46
|
+
== Author
|
47
|
+
Daniel J. Berger
|
data/Rakefile
CHANGED
@@ -1,26 +1,26 @@
|
|
1
|
-
require 'rake'
|
2
|
-
require 'rake/testtask'
|
3
|
-
|
4
|
-
desc "Install the archive-tar-external library (non-gem)"
|
5
|
-
task :install do
|
6
|
-
dest = File.join(Config::CONFIG['sitelibdir'], 'archive')
|
7
|
-
Dir.mkdir(dest) unless File.exists? dest
|
8
|
-
cp 'lib/archive/tar_external.rb', dest, :verbose => true
|
9
|
-
end
|
10
|
-
|
11
|
-
desc 'Build the archive-tar-external gem'
|
12
|
-
task :gem do
|
13
|
-
spec = eval(IO.read('archive-tar-external.gemspec'))
|
14
|
-
Gem::Builder.new(spec).build
|
15
|
-
end
|
16
|
-
|
17
|
-
desc 'Install the archive-tar-external library as a gem'
|
18
|
-
task :install_gem => [:gem] do
|
19
|
-
file = Dir["*.gem"].first
|
20
|
-
sh "gem install #{file}"
|
21
|
-
end
|
22
|
-
|
23
|
-
Rake::TestTask.new do |t|
|
24
|
-
t.warning = true
|
25
|
-
t.verbose = true
|
26
|
-
end
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
|
4
|
+
desc "Install the archive-tar-external library (non-gem)"
|
5
|
+
task :install do
|
6
|
+
dest = File.join(Config::CONFIG['sitelibdir'], 'archive')
|
7
|
+
Dir.mkdir(dest) unless File.exists? dest
|
8
|
+
cp 'lib/archive/tar_external.rb', dest, :verbose => true
|
9
|
+
end
|
10
|
+
|
11
|
+
desc 'Build the archive-tar-external gem'
|
12
|
+
task :gem do
|
13
|
+
spec = eval(IO.read('archive-tar-external.gemspec'))
|
14
|
+
Gem::Builder.new(spec).build
|
15
|
+
end
|
16
|
+
|
17
|
+
desc 'Install the archive-tar-external library as a gem'
|
18
|
+
task :install_gem => [:gem] do
|
19
|
+
file = Dir["*.gem"].first
|
20
|
+
sh "gem install #{file}"
|
21
|
+
end
|
22
|
+
|
23
|
+
Rake::TestTask.new do |t|
|
24
|
+
t.warning = true
|
25
|
+
t.verbose = true
|
26
|
+
end
|
@@ -1,40 +1,40 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'rbconfig'
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
end
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rbconfig'
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = 'archive-tar-external'
|
6
|
+
spec.version = '1.3.0'
|
7
|
+
spec.summary = 'A simple way to create tar archives using external calls'
|
8
|
+
spec.license = 'Artistic 2.0'
|
9
|
+
spec.author = 'Daniel Berger'
|
10
|
+
spec.email = 'djberg96@gmail.com'
|
11
|
+
spec.homepage = 'http://www.rubyforge.org/shards'
|
12
|
+
spec.test_file = 'test/test_archive_tar_external.rb'
|
13
|
+
spec.has_rdoc = true
|
14
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
15
|
+
|
16
|
+
spec.rubyforge_project = 'shards'
|
17
|
+
|
18
|
+
spec.extra_rdoc_files = [
|
19
|
+
'README',
|
20
|
+
'CHANGES',
|
21
|
+
'MANIFEST',
|
22
|
+
'doc/tar_external.txt'
|
23
|
+
]
|
24
|
+
|
25
|
+
spec.description = <<-EOF
|
26
|
+
The archive-tar-external is a simple wrapper interface for creating
|
27
|
+
tar files using your system's tar command. You can also easily compress
|
28
|
+
your tar files with your system's compression programs such as zip, gzip,
|
29
|
+
or bzip2.
|
30
|
+
EOF
|
31
|
+
|
32
|
+
spec.add_development_dependency('test-unit', '>= 2.0.3')
|
33
|
+
spec.add_development_dependency('ptools', '>= 1.1.7')
|
34
|
+
|
35
|
+
if Config::CONFIG['host_os'] =~ /mswin|dos|win32|cygwin|mingw|win32/i
|
36
|
+
if RUBY_VERSION.to_f < 1.9 && RUBY_PLATFORM !~ /java/i
|
37
|
+
spec.add_dependency('win32-open3', '>= 0.3.1')
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/doc/tar_external.txt
CHANGED
@@ -1,136 +1,109 @@
|
|
1
|
-
== Description
|
2
|
-
|
3
|
-
|
4
|
-
== Synopsis
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
== Constants
|
23
|
-
VERSION
|
24
|
-
|
25
|
-
|
26
|
-
== Class Methods
|
27
|
-
Archive::Tar::External.new(archive_name, pattern=nil, program=nil)
|
28
|
-
Creates an instance of an Archive::Tar::External object. The +archive_name+ is
|
29
|
-
the name of the tarball. While a '.tar' extension is recommended based on
|
30
|
-
years of convention, it is not enforced.
|
31
|
-
|
32
|
-
If +pattern+ is provided, then the Archive#create_archive method is called
|
33
|
-
internally.
|
34
|
-
|
35
|
-
If +program+ is provided, then the Archive#compress_archive method is
|
36
|
-
called internally.
|
37
|
-
|
38
|
-
Note that +archive_name+ name must be a String, or a TypeError is raised.
|
39
|
-
|
40
|
-
Archive::Tar::External.expand_archive(archive_name, *files)
|
41
|
-
Identical to the instance method of the same name, except that you must
|
42
|
-
specify the +archive_name+, and the tar program is hard coded to 'tar xf'.
|
43
|
-
|
44
|
-
Archive::Tar::External.uncompress_archive(archive_name, program='gunzip')
|
45
|
-
Identical to the instance method of the same name, except that you must
|
46
|
-
specify the +archive_name+ as the first argument.
|
47
|
-
|
48
|
-
== Instance Methods
|
49
|
-
Archive;:Tar#add(file1 [, file2, ...])
|
50
|
-
Archive::Tar::External#add_to_archive(file1 [, file2, ...])
|
51
|
-
Adds a list of files to the current archive. At least one file must be
|
52
|
-
provided or a Tar::Error is raised.
|
53
|
-
|
54
|
-
Archive::Tar::External#archive_info
|
55
|
-
Archive::Tar::External#info
|
56
|
-
Returns an array of file names that are included within the tarball.
|
57
|
-
|
58
|
-
Archive::Tar::External#archive_name
|
59
|
-
Returns the current archive name.
|
60
|
-
|
61
|
-
Archive::Tar::External#archive_name=
|
62
|
-
Sets the current archive name.
|
63
|
-
|
64
|
-
Archive::Tar::External#compress(program="gzip")
|
65
|
-
Archive::Tar::External#compress_archive(program="gzip")
|
66
|
-
Compresses the tarball using the program you pass to this method. The
|
67
|
-
default is "gzip".
|
68
|
-
|
69
|
-
Note that any arguments you want to be passed along with the program can
|
70
|
-
simply be included as part of the program, e.g. "gzip -f".
|
71
|
-
|
72
|
-
Archive::Tar::External#create(file_pattern)
|
73
|
-
Archive::Tar::External#create_archive(file_pattern)
|
74
|
-
Creates a new tarball, including those files which match 'file_pattern'.
|
75
|
-
|
76
|
-
Archive::Tar::External#expand_archive(files=nil)
|
77
|
-
Archive::Tar::External#extract_archive(files=nil)
|
78
|
-
Expands the contents of the tarball. Note that this method does NOT delete
|
79
|
-
the tarball.
|
80
|
-
|
81
|
-
If file names are provided, then only those files are extracted.
|
82
|
-
|
83
|
-
Archive::Tar::External#tar_program
|
84
|
-
Returns the name of the tar program used. The default is "tar".
|
85
|
-
|
86
|
-
Archive::Tar::External#tar_program=(program_name)
|
87
|
-
Sets the name of the tar program to be used.
|
88
|
-
|
89
|
-
Archive::Tar::External#uncompress(program="gunzip")
|
90
|
-
Archive::Tar::External#uncompress_archive(program="gunzip")
|
91
|
-
Uncompresses the tarball using the program you pass to this method. The
|
92
|
-
default is "gunzip".
|
93
|
-
|
94
|
-
As for compress_archive(), you can pass arguments along as part of the
|
95
|
-
argument.
|
96
|
-
|
97
|
-
Archive::Tar::External#update(files)
|
98
|
-
Archive::Tar::External#update_archive(files)
|
99
|
-
Updates the given +files+ in the archive, i.e they are added if they
|
100
|
-
are not already in the archive or have been modified.
|
101
|
-
|
102
|
-
== Exceptions
|
103
|
-
Tar::Error
|
104
|
-
Raised if something goes wrong during the execution of any methods that
|
105
|
-
use the tar command internally.
|
106
|
-
|
107
|
-
Tar::CompressError
|
108
|
-
Raised if something goes wrong during the Tar#compress_archive or
|
109
|
-
Tar#uncompress_archive methods.
|
110
|
-
|
111
|
-
== Known Issues
|
112
|
-
The tar program that comes with Solaris will not raise an error if you
|
113
|
-
try to expand a file from an archive that does not contain that file.
|
114
|
-
|
115
|
-
If you come across any other issues, please report them on the project
|
116
|
-
page at http://www.rubyforge.org/projects/shards.
|
117
|
-
|
118
|
-
== Future Plans
|
119
|
-
Anything folks are looking for?
|
120
|
-
|
121
|
-
== License
|
122
|
-
Artistic 2.0
|
123
|
-
|
124
|
-
== Warranty
|
125
|
-
This package is provided "as is" and without any express or
|
126
|
-
implied warranties, including, without limitation, the implied
|
127
|
-
warranties of merchantability and fitness for a particular purpose.
|
128
|
-
|
129
|
-
== Copyright
|
130
|
-
(C) 2003 - 2009 Daniel J. Berger
|
131
|
-
All Rights Reserved
|
132
|
-
|
133
|
-
== Author
|
134
|
-
Daniel J. Berger
|
135
|
-
djberg96 at gmail dot com
|
136
|
-
imperator on IRC (freenode)
|
1
|
+
== Description
|
2
|
+
A simple tar interface using external system calls.
|
3
|
+
|
4
|
+
== Synopsis
|
5
|
+
# Assuming we have three .txt files, t1.txt, t2.txt, t3.txt ...
|
6
|
+
require 'archive/tar/external'
|
7
|
+
include Archive
|
8
|
+
|
9
|
+
t = Tar::External.new("myfile.tar")
|
10
|
+
|
11
|
+
t.create_archive("*.txt")
|
12
|
+
t.compress_archive("bzip2") # 'myfile.tar.bz2' now exists
|
13
|
+
|
14
|
+
t.uncompress_archive("bunzip2")
|
15
|
+
|
16
|
+
t.archive_name # "myfile.tar"
|
17
|
+
t.archive_info # ["t1.txt","t2.txt","t3.txt"]
|
18
|
+
|
19
|
+
t.add_to_archive("t4.txt","t5.txt")
|
20
|
+
t.expand_archive
|
21
|
+
|
22
|
+
== Constants
|
23
|
+
VERSION
|
24
|
+
Current version number of this library. This is a string.
|
25
|
+
|
26
|
+
== Class Methods
|
27
|
+
Archive::Tar::External.new(archive_name, pattern=nil, program=nil)
|
28
|
+
Creates an instance of an Archive::Tar::External object. The +archive_name+ is
|
29
|
+
the name of the tarball. While a '.tar' extension is recommended based on
|
30
|
+
years of convention, it is not enforced.
|
31
|
+
|
32
|
+
If +pattern+ is provided, then the Archive#create_archive method is called
|
33
|
+
internally.
|
34
|
+
|
35
|
+
If +program+ is provided, then the Archive#compress_archive method is
|
36
|
+
called internally.
|
37
|
+
|
38
|
+
Note that +archive_name+ name must be a String, or a TypeError is raised.
|
39
|
+
|
40
|
+
Archive::Tar::External.expand_archive(archive_name, *files)
|
41
|
+
Identical to the instance method of the same name, except that you must
|
42
|
+
specify the +archive_name+, and the tar program is hard coded to 'tar xf'.
|
43
|
+
|
44
|
+
Archive::Tar::External.uncompress_archive(archive_name, program='gunzip')
|
45
|
+
Identical to the instance method of the same name, except that you must
|
46
|
+
specify the +archive_name+ as the first argument.
|
47
|
+
|
48
|
+
== Instance Methods
|
49
|
+
Archive;:Tar#add(file1 [, file2, ...])
|
50
|
+
Archive::Tar::External#add_to_archive(file1 [, file2, ...])
|
51
|
+
Adds a list of files to the current archive. At least one file must be
|
52
|
+
provided or a Tar::Error is raised.
|
53
|
+
|
54
|
+
Archive::Tar::External#archive_info
|
55
|
+
Archive::Tar::External#info
|
56
|
+
Returns an array of file names that are included within the tarball.
|
57
|
+
|
58
|
+
Archive::Tar::External#archive_name
|
59
|
+
Returns the current archive name.
|
60
|
+
|
61
|
+
Archive::Tar::External#archive_name=
|
62
|
+
Sets the current archive name.
|
63
|
+
|
64
|
+
Archive::Tar::External#compress(program="gzip")
|
65
|
+
Archive::Tar::External#compress_archive(program="gzip")
|
66
|
+
Compresses the tarball using the program you pass to this method. The
|
67
|
+
default is "gzip".
|
68
|
+
|
69
|
+
Note that any arguments you want to be passed along with the program can
|
70
|
+
simply be included as part of the program, e.g. "gzip -f".
|
71
|
+
|
72
|
+
Archive::Tar::External#create(file_pattern)
|
73
|
+
Archive::Tar::External#create_archive(file_pattern)
|
74
|
+
Creates a new tarball, including those files which match 'file_pattern'.
|
75
|
+
|
76
|
+
Archive::Tar::External#expand_archive(files=nil)
|
77
|
+
Archive::Tar::External#extract_archive(files=nil)
|
78
|
+
Expands the contents of the tarball. Note that this method does NOT delete
|
79
|
+
the tarball.
|
80
|
+
|
81
|
+
If file names are provided, then only those files are extracted.
|
82
|
+
|
83
|
+
Archive::Tar::External#tar_program
|
84
|
+
Returns the name of the tar program used. The default is "tar".
|
85
|
+
|
86
|
+
Archive::Tar::External#tar_program=(program_name)
|
87
|
+
Sets the name of the tar program to be used.
|
88
|
+
|
89
|
+
Archive::Tar::External#uncompress(program="gunzip")
|
90
|
+
Archive::Tar::External#uncompress_archive(program="gunzip")
|
91
|
+
Uncompresses the tarball using the program you pass to this method. The
|
92
|
+
default is "gunzip".
|
93
|
+
|
94
|
+
As for compress_archive(), you can pass arguments along as part of the
|
95
|
+
argument.
|
96
|
+
|
97
|
+
Archive::Tar::External#update(files)
|
98
|
+
Archive::Tar::External#update_archive(files)
|
99
|
+
Updates the given +files+ in the archive, i.e they are added if they
|
100
|
+
are not already in the archive or have been modified.
|
101
|
+
|
102
|
+
== Exceptions
|
103
|
+
Tar::Error
|
104
|
+
Raised if something goes wrong during the execution of any methods that
|
105
|
+
use the tar command internally.
|
106
|
+
|
107
|
+
Tar::CompressError
|
108
|
+
Raised if something goes wrong during the Tar#compress_archive or
|
109
|
+
Tar#uncompress_archive methods.
|