archive-tar-minitar 0.5.1
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/ChangeLog +11 -0
- data/Install +6 -0
- data/README +66 -0
- data/Rakefile +115 -0
- data/bin/minitar +26 -0
- data/lib/archive/tar/minitar.rb +979 -0
- data/lib/archive/tar/minitar/command.rb +814 -0
- data/tests/tc_tar.rb +624 -0
- data/tests/testall.rb +20 -0
- metadata +60 -0
data/tests/testall.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
#--
|
|
3
|
+
# Ruwiki version 0.8.0
|
|
4
|
+
# Copyright � 2002 - 2003, Digikata and HaloStatue
|
|
5
|
+
# Alan Chen (alan@digikata.com)
|
|
6
|
+
# Austin Ziegler (ruwiki@halostatue.ca)
|
|
7
|
+
#
|
|
8
|
+
# Licensed under the same terms as Ruby.
|
|
9
|
+
#
|
|
10
|
+
# $Id: testall.rb,v 1.1 2004/09/06 22:35:41 austin Exp $
|
|
11
|
+
#++
|
|
12
|
+
|
|
13
|
+
$LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
|
|
14
|
+
|
|
15
|
+
puts "Checking for test cases:"
|
|
16
|
+
Dir['tc*.rb'].each do |testcase|
|
|
17
|
+
puts "\t#{testcase}"
|
|
18
|
+
require testcase
|
|
19
|
+
end
|
|
20
|
+
puts " "
|
metadata
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
rubygems_version: 0.8.1
|
|
3
|
+
specification_version: 1
|
|
4
|
+
name: archive-tar-minitar
|
|
5
|
+
version: !ruby/object:Gem::Version
|
|
6
|
+
version: 0.5.1
|
|
7
|
+
date: 2004-09-27
|
|
8
|
+
summary: Provides POSIX tarchive management from Ruby programs.
|
|
9
|
+
require_paths:
|
|
10
|
+
- lib
|
|
11
|
+
author: "Austin Ziegler, Mauricio Fernandez"
|
|
12
|
+
email: minitar@halostatue.ca
|
|
13
|
+
homepage: http://rubyforge.org/projects/ruwiki/
|
|
14
|
+
rubyforge_project: ruwiki
|
|
15
|
+
description: "Archive::Tar::Minitar is a pure-Ruby library and command-line utility that provides the ability to deal with POSIX tar(1) archive files. The implementation is based heavily on Mauricio Fern�ndez's implementation in rpa-base, but has been reorganised to promote reuse in other projects."
|
|
16
|
+
autorequire: archive/tar/minitar
|
|
17
|
+
default_executable: minitar
|
|
18
|
+
bindir: bin
|
|
19
|
+
has_rdoc: true
|
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
21
|
+
requirements:
|
|
22
|
+
-
|
|
23
|
+
- ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 1.8.1
|
|
26
|
+
version:
|
|
27
|
+
platform: ruby
|
|
28
|
+
files:
|
|
29
|
+
- bin
|
|
30
|
+
- ChangeLog
|
|
31
|
+
- Install
|
|
32
|
+
- lib
|
|
33
|
+
- Rakefile
|
|
34
|
+
- README
|
|
35
|
+
- tests
|
|
36
|
+
- bin/minitar
|
|
37
|
+
- lib/archive
|
|
38
|
+
- lib/archive/tar
|
|
39
|
+
- lib/archive/tar/minitar
|
|
40
|
+
- lib/archive/tar/minitar.rb
|
|
41
|
+
- lib/archive/tar/minitar/command.rb
|
|
42
|
+
- tests/tc_tar.rb
|
|
43
|
+
- tests/testall.rb
|
|
44
|
+
test_files:
|
|
45
|
+
- tests/testall.rb
|
|
46
|
+
rdoc_options:
|
|
47
|
+
- "--title"
|
|
48
|
+
- "Archive::Tar::MiniTar -- A POSIX tarchive library"
|
|
49
|
+
- "--main"
|
|
50
|
+
- README
|
|
51
|
+
- "--line-numbers"
|
|
52
|
+
extra_rdoc_files:
|
|
53
|
+
- README
|
|
54
|
+
- ChangeLog
|
|
55
|
+
- Install
|
|
56
|
+
executables:
|
|
57
|
+
- minitar
|
|
58
|
+
extensions: []
|
|
59
|
+
requirements: []
|
|
60
|
+
dependencies: []
|