minitar 0.5.3
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 +14 -0
- data/Install +6 -0
- data/README +66 -0
- data/Rakefile +113 -0
- data/bin/minitar +27 -0
- data/lib/archive/tar/minitar.rb +985 -0
- data/lib/archive/tar/minitar/command.rb +814 -0
- data/tests/tc_tar.rb +614 -0
- data/tests/testall.rb +10 -0
- metadata +69 -0
data/tests/testall.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: minitar
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.5.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Austin Ziegler, Mauricio Fernandez, Antoine Toulme
|
|
8
|
+
autorequire: archive/tar/minitar
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2010-07-12 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
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 Ferna'ndez's implementation in rpa-base, but has been reorganised to promote reuse in other projects.
|
|
17
|
+
email: minitar@halostatue.ca
|
|
18
|
+
executables:
|
|
19
|
+
- minitar
|
|
20
|
+
extensions: []
|
|
21
|
+
|
|
22
|
+
extra_rdoc_files:
|
|
23
|
+
- README
|
|
24
|
+
- ChangeLog
|
|
25
|
+
- Install
|
|
26
|
+
files:
|
|
27
|
+
- bin/minitar
|
|
28
|
+
- ChangeLog
|
|
29
|
+
- Install
|
|
30
|
+
- lib/archive/tar/minitar/command.rb
|
|
31
|
+
- lib/archive/tar/minitar.rb
|
|
32
|
+
- Rakefile
|
|
33
|
+
- README
|
|
34
|
+
- tests/tc_tar.rb
|
|
35
|
+
- tests/testall.rb
|
|
36
|
+
has_rdoc: true
|
|
37
|
+
homepage: http://rubyforge.org/projects/ruwiki/
|
|
38
|
+
licenses: []
|
|
39
|
+
|
|
40
|
+
post_install_message:
|
|
41
|
+
rdoc_options:
|
|
42
|
+
- --title
|
|
43
|
+
- Archive::Tar::MiniTar -- A POSIX tarchive library
|
|
44
|
+
- --main
|
|
45
|
+
- README
|
|
46
|
+
- --line-numbers
|
|
47
|
+
require_paths:
|
|
48
|
+
- lib
|
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: 1.8.2
|
|
54
|
+
version:
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: "0"
|
|
60
|
+
version:
|
|
61
|
+
requirements: []
|
|
62
|
+
|
|
63
|
+
rubyforge_project: ruwiki
|
|
64
|
+
rubygems_version: 1.3.5
|
|
65
|
+
signing_key:
|
|
66
|
+
specification_version: 3
|
|
67
|
+
summary: Provides POSIX tarchive management from Ruby programs.
|
|
68
|
+
test_files:
|
|
69
|
+
- tests/testall.rb
|