minitar-jmazzi 0.5.4

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.
@@ -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,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: minitar-jmazzi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.4
5
+ platform: ruby
6
+ authors:
7
+ - Austin Ziegler, Mauricio Fernandez, Antoine Toulme
8
+ autorequire: archive/tar/minitar
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-10 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Archive::Tar::Minitar is a pure-Ruby library and command-line utility
14
+ that provides the ability to deal with POSIX tar(1) archive files. The implementation
15
+ is based heavily on Mauricio Ferna'ndez's implementation in rpa-base, but has been
16
+ reorganised to promote reuse in other projects. Antoine Toulme forked the original
17
+ project on rubyforge to place it on github, under http://www.github.com/atoulme/minitar
18
+ email: antoine@lunar-ocean.com
19
+ executables:
20
+ - minitar
21
+ extensions: []
22
+ extra_rdoc_files:
23
+ - README
24
+ - ChangeLog
25
+ - Install
26
+ files:
27
+ - ChangeLog
28
+ - Install
29
+ - README
30
+ - Rakefile
31
+ - bin/minitar
32
+ - lib/archive/tar/minitar.rb
33
+ - lib/archive/tar/minitar/command.rb
34
+ - tests/tc_tar.rb
35
+ - tests/testall.rb
36
+ homepage: https://github.com/jmazzi/minitar
37
+ licenses:
38
+ - GPL2
39
+ - Ruby
40
+ metadata: {}
41
+ post_install_message:
42
+ rdoc_options:
43
+ - "--title"
44
+ - Archive::Tar::MiniTar -- A POSIX tarchive library
45
+ - "--main"
46
+ - README
47
+ - "--line-numbers"
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 1.8.2
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.6.11
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Provides POSIX tarchive management from Ruby programs.
66
+ test_files:
67
+ - tests/testall.rb