minitar 0.5.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of minitar might be problematic. Click here for more details.

@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
4
+
5
+ puts "Checking for test cases:"
6
+ Dir['tc*.rb'].each do |testcase|
7
+ puts "\t#{testcase}"
8
+ require testcase
9
+ end
10
+ puts " "
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