archive-tar-external 1.3.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,203 +1,209 @@
1
- ###############################################################################
2
- # test_archive_tar_external.rb
3
- #
4
- # Test suite for the archive-tar-external library. This test case should be
5
- # run via the 'rake test' Rake task.
6
- ###############################################################################
7
- require 'rubygems'
8
- gem 'test-unit'
9
-
10
- require 'archive/tar/external'
11
- require 'test/unit'
12
- require 'ptools'
13
- include Archive
14
-
15
- class TC_ArchiveTarExternal < Test::Unit::TestCase
16
- def self.startup
17
- Dir.chdir(File.dirname(File.expand_path(__FILE__)))
18
-
19
- @@tmp_file1 = 'temp1.txt'
20
- @@tmp_file2 = 'temp2.txt'
21
- @@tmp_file3 = 'temp3.txt'
22
-
23
- @@gtar_found = File.which('gtar')
24
- @@tar_found = File.which('tar')
25
- @@gzip_found = File.which('gzip')
26
- @@bzip2_found = File.which('bzip2')
27
-
28
- File.open(@@tmp_file1, 'w'){ |f| f.puts 'This is a temporary text file' }
29
- File.open(@@tmp_file2, 'w'){ |f| f.puts 'This is a temporary text file' }
30
- File.open(@@tmp_file3, 'w'){ |f| f.puts 'This is a temporary text file' }
31
- end
32
-
33
- def setup
34
- @tar = Tar::External.new('test.tar')
35
- @tar_name = 'test.tar'
36
- @pattern = '*.txt'
37
- @archive = 'temp.tar.gz'
38
- end
39
-
40
- def test_version
41
- assert_equal('1.3.0', Tar::External::VERSION)
42
- end
43
-
44
- def test_constructor
45
- assert_nothing_raised{ Tar::External.new(@tar_name) }
46
- end
47
-
48
- def test_constructor_with_extension
49
- assert_nothing_raised{ Tar::External.new(@tar_name, '*.txt') }
50
- end
51
-
52
- def test_constructor_with_program
53
- omit_unless(@@gzip_found){ 'gzip program not found - skipping' }
54
- assert_nothing_raised{ Tar::External.new(@tar_name, '*.txt', 'gzip') }
55
- end
56
-
57
- def test_constructor_expected_errors
58
- assert_raise(ArgumentError){ Tar::External.new }
59
- end
60
-
61
- def test_tar_program
62
- assert_respond_to(@tar, :tar_program)
63
- assert_equal('tar', @tar.tar_program)
64
- end
65
-
66
- def test_archive_name
67
- assert_respond_to(@tar, :archive_name)
68
- assert_respond_to(@tar, :archive_name=)
69
-
70
- assert_equal('test.tar', @tar.archive_name)
71
- assert_nothing_raised{ @tar.archive_name }
72
- assert_nothing_raised{ @tar.archive_name = 'foo' }
73
- end
74
-
75
- def test_compressed_archive_name_get
76
- assert_respond_to(@tar, :compressed_archive_name)
77
- assert_nil(@tar.compressed_archive_name)
78
- end
79
-
80
- def test_compressed_archive_name_set
81
- assert_respond_to(@tar, :compressed_archive_name=)
82
- assert_nothing_raised{ @tar.compressed_archive_name = 'test.tar.gz' }
83
- assert_equal('test.tar.gz', @tar.compressed_archive_name)
84
- assert_equal('test.tar', @tar.archive_name)
85
-
86
- assert_nothing_raised{ @tar.compressed_archive_name = 'test.tgz' }
87
- assert_equal('test.tgz', @tar.compressed_archive_name)
88
- assert_equal('test.tar', @tar.archive_name)
89
- end
90
-
91
- def test_create_archive_basic
92
- assert_respond_to(@tar, :create_archive)
93
-
94
- assert_raises(ArgumentError){ @tar.create_archive }
95
- assert_raises(Tar::Error){ @tar.create_archive('*.blah') }
96
-
97
- assert_nothing_raised{ @tar.create_archive(@pattern) }
98
- assert_true(File.exists?(@tar_name))
99
- end
100
-
101
- def test_create_alias
102
- assert_respond_to(@tar, :create)
103
- assert_true(Tar::External.instance_method(:create) == Tar::External.instance_method(:create_archive))
104
- end
105
-
106
- def test_compress_archive_basic
107
- assert_respond_to(@tar, :compress_archive)
108
- end
109
-
110
- def test_compress_alias
111
- assert_respond_to(@tar, :compress)
112
- assert_true(Tar::External.instance_method(:compress) == Tar::External.instance_method(:compress_archive))
113
- end
114
-
115
- def test_compress_archive_gzip
116
- assert_nothing_raised{ @tar.create_archive('*.txt') }
117
- assert_nothing_raised{ @tar.compress_archive }
118
-
119
- assert_equal('test.tar.gz', @tar.compressed_archive_name)
120
- assert_true(File.exists?('test.tar.gz'))
121
- end
122
-
123
- def test_compress_archive_bzip2
124
- assert_nothing_raised{ @tar.create_archive('*.txt') }
125
- assert_nothing_raised{ @tar.compress_archive('bzip2') }
126
- assert_true(File.exists?('test.tar.bz2'))
127
- end
128
-
129
- def test_uncompress_archive
130
- assert_respond_to(@tar, :uncompress_archive)
131
- assert_nothing_raised{ @tar.create_archive('*.txt') }
132
- assert_nothing_raised{ @tar.compress_archive }
133
- assert_nothing_raised{ @tar.uncompress_archive }
134
- assert_false(File.exists?('test.tar.gz'))
135
- end
136
-
137
- def test_uncompress_archive_class_method
138
- assert_respond_to(Tar::External, :uncompress_archive)
139
- end
140
-
141
- def test_uncompress_alias
142
- assert_respond_to(Tar::External, :uncompress)
143
- assert_true(Tar::External.method(:uncompress) == Tar::External.method(:uncompress_archive))
144
- end
145
-
146
- def test_archive_info
147
- assert_respond_to(@tar, :archive_info)
148
- assert_nothing_raised{ @tar.create_archive('*.txt') }
149
- assert_equal(['temp1.txt','temp2.txt','temp3.txt'], @tar.archive_info)
150
- end
151
-
152
- def test_add_to_archive
153
- assert_respond_to(@tar,:add_to_archive)
154
- assert_nothing_raised{ @tar.create_archive('temp1.txt') }
155
- assert_nothing_raised{ @tar.add_to_archive('temp2.txt') }
156
- assert_nothing_raised{ @tar.add_to_archive('temp2.txt','temp3.txt') }
157
- end
158
-
159
- def test_update_archive
160
- assert_respond_to(@tar, :update_archive)
161
- assert_nothing_raised{ @tar.create_archive('*.txt') }
162
- assert_nothing_raised{ @tar.update_archive('temp2.txt') }
163
- end
164
-
165
- def test_extract_archive_basic
166
- assert_respond_to(@tar, :extract_archive)
167
- end
168
-
169
- def test_extract_archive_aliases
170
- assert_true(Tar::External.instance_method(:extract_archive) == Tar::External.instance_method(:expand_archive))
171
- assert_true(Tar::External.instance_method(:extract) == Tar::External.instance_method(:expand_archive))
172
- assert_true(Tar::External.instance_method(:expand) == Tar::External.instance_method(:expand_archive))
173
- end
174
-
175
- def test_extract_archive_advanced
176
- omit_unless(Config::CONFIG['host_os'] =~ /sunos|solaris/){
177
- assert_nothing_raised{ @tar.tar_program = @@gtar }
178
- }
179
- assert_nothing_raised{ @tar.create('*.txt') }
180
- assert_raises(Tar::Error){ @tar.expand('blah.txt') }
181
-
182
- assert_nothing_raised{ @tar.extract_archive }
183
- assert_nothing_raised{ @tar.extract_archive('temp2.txt') }
184
- end
185
-
186
- def teardown
187
- @tar = nil
188
- File.delete('test.tar') if File.exists?('test.tar')
189
- File.delete('test.tar.gz') if File.exists?('test.tar.gz')
190
- File.delete('test.tar.bz2') if File.exists?('test.tar.bz2')
191
- File.delete('test.tar.zip') if File.exists?('test.tar.zip')
192
- end
193
-
194
- def self.shutdown
195
- @@tar_foudn = nil
196
- @@gzip_found = nil
197
- @@bzip2_found = nil
198
-
199
- File.delete(@@tmp_file1) if File.exists?(@@tmp_file1)
200
- File.delete(@@tmp_file2) if File.exists?(@@tmp_file2)
201
- File.delete(@@tmp_file3) if File.exists?(@@tmp_file3)
202
- end
203
- end
1
+ ###############################################################################
2
+ # test_archive_tar_external.rb
3
+ #
4
+ # Test suite for the archive-tar-external library. This test case should be
5
+ # run via the 'rake test' Rake task.
6
+ ###############################################################################
7
+ require 'archive/tar/external'
8
+ require 'test-unit'
9
+ require 'ptools'
10
+ include Archive
11
+
12
+ class TC_ArchiveTarExternal < Test::Unit::TestCase
13
+ def self.startup
14
+ Dir.chdir(File.dirname(File.expand_path(__FILE__)))
15
+
16
+ @@tmp_file1 = 'temp1.txt'
17
+ @@tmp_file2 = 'temp2.txt'
18
+ @@tmp_file3 = 'temp3.txt'
19
+
20
+ @@gtar_found = File.which('gtar')
21
+ @@tar_found = File.which('tar')
22
+ @@gzip_found = File.which('gzip')
23
+ @@bzip2_found = File.which('bzip2')
24
+
25
+ File.open(@@tmp_file1, 'w'){ |f| f.puts 'This is a temporary text file' }
26
+ File.open(@@tmp_file2, 'w'){ |f| f.puts 'This is a temporary text file' }
27
+ File.open(@@tmp_file3, 'w'){ |f| f.puts 'This is a temporary text file' }
28
+ end
29
+
30
+ def setup
31
+ @tar = Tar::External.new('test.tar')
32
+ @tar_name = 'test.tar'
33
+ @pattern = '*.txt'
34
+ @archive = 'temp.tar.gz'
35
+ end
36
+
37
+ def test_version
38
+ assert_equal('1.4.1', Tar::External::VERSION)
39
+ assert_true(Tar::External::VERSION.frozen?)
40
+ end
41
+
42
+ def test_constructor
43
+ assert_nothing_raised{ Tar::External.new(@tar_name) }
44
+ end
45
+
46
+ def test_constructor_with_extension
47
+ assert_nothing_raised{ Tar::External.new(@tar_name, '*.txt') }
48
+ end
49
+
50
+ def test_constructor_with_program
51
+ omit_unless(@@gzip_found){ 'gzip program not found - skipping' }
52
+ assert_nothing_raised{ Tar::External.new(@tar_name, '*.txt', 'gzip') }
53
+ end
54
+
55
+ def test_constructor_expected_errors
56
+ assert_raise(ArgumentError){ Tar::External.new }
57
+ end
58
+
59
+ def test_tar_program
60
+ assert_respond_to(@tar, :tar_program)
61
+ assert_equal('tar', @tar.tar_program)
62
+ end
63
+
64
+ def test_archive_name
65
+ assert_respond_to(@tar, :archive_name)
66
+ assert_respond_to(@tar, :archive_name=)
67
+
68
+ assert_equal('test.tar', @tar.archive_name)
69
+ assert_nothing_raised{ @tar.archive_name }
70
+ assert_nothing_raised{ @tar.archive_name = 'foo' }
71
+ end
72
+
73
+ def test_compressed_archive_name_get
74
+ assert_respond_to(@tar, :compressed_archive_name)
75
+ assert_nil(@tar.compressed_archive_name)
76
+ end
77
+
78
+ def test_compressed_archive_name_set
79
+ assert_respond_to(@tar, :compressed_archive_name=)
80
+ assert_nothing_raised{ @tar.compressed_archive_name = 'test.tar.gz' }
81
+ assert_equal('test.tar.gz', @tar.compressed_archive_name)
82
+ assert_equal('test.tar', @tar.archive_name)
83
+
84
+ assert_nothing_raised{ @tar.compressed_archive_name = 'test.tgz' }
85
+ assert_equal('test.tgz', @tar.compressed_archive_name)
86
+ assert_equal('test.tar', @tar.archive_name)
87
+ end
88
+
89
+ test "create_archive basic functionality" do
90
+ assert_respond_to(@tar, :create_archive)
91
+ assert_nothing_raised{ @tar.create_archive(@pattern) }
92
+ assert_true(File.exist?(@tar_name))
93
+ end
94
+
95
+ test "create_archive requires at least on argument" do
96
+ assert_raises(ArgumentError){ @tar.create_archive }
97
+ end
98
+
99
+ test "create_archive raises an error if no files match the pattern" do
100
+ assert_raises(Tar::Error){ @tar.create_archive('*.blah') }
101
+ end
102
+
103
+ test "create_archive accepts optional parameters" do
104
+ assert_nothing_raised{ @tar.create_archive(@pattern, 'cfj') }
105
+ end
106
+
107
+ def test_create_alias
108
+ assert_respond_to(@tar, :create)
109
+ assert_true(Tar::External.instance_method(:create) == Tar::External.instance_method(:create_archive))
110
+ end
111
+
112
+ def test_compress_archive_basic
113
+ assert_respond_to(@tar, :compress_archive)
114
+ end
115
+
116
+ def test_compress_alias
117
+ assert_respond_to(@tar, :compress)
118
+ assert_true(Tar::External.instance_method(:compress) == Tar::External.instance_method(:compress_archive))
119
+ end
120
+
121
+ def test_compress_archive_gzip
122
+ assert_nothing_raised{ @tar.create_archive('*.txt') }
123
+ assert_nothing_raised{ @tar.compress_archive }
124
+
125
+ assert_equal('test.tar.gz', @tar.compressed_archive_name)
126
+ assert_true(File.exist?('test.tar.gz'))
127
+ end
128
+
129
+ def test_compress_archive_bzip2
130
+ assert_nothing_raised{ @tar.create_archive('*.txt') }
131
+ assert_nothing_raised{ @tar.compress_archive('bzip2') }
132
+ assert_true(File.exist?('test.tar.bz2'))
133
+ end
134
+
135
+ def test_uncompress_archive
136
+ assert_respond_to(@tar, :uncompress_archive)
137
+ assert_nothing_raised{ @tar.create_archive('*.txt') }
138
+ assert_nothing_raised{ @tar.compress_archive }
139
+ assert_nothing_raised{ @tar.uncompress_archive }
140
+ assert_false(File.exist?('test.tar.gz'))
141
+ end
142
+
143
+ def test_uncompress_archive_class_method
144
+ assert_respond_to(Tar::External, :uncompress_archive)
145
+ end
146
+
147
+ def test_uncompress_alias
148
+ assert_respond_to(Tar::External, :uncompress)
149
+ assert_true(Tar::External.method(:uncompress) == Tar::External.method(:uncompress_archive))
150
+ end
151
+
152
+ def test_archive_info
153
+ assert_respond_to(@tar, :archive_info)
154
+ assert_nothing_raised{ @tar.create_archive('*.txt') }
155
+ assert_equal(['temp1.txt','temp2.txt','temp3.txt'], @tar.archive_info)
156
+ end
157
+
158
+ def test_add_to_archive
159
+ assert_respond_to(@tar,:add_to_archive)
160
+ assert_nothing_raised{ @tar.create_archive('temp1.txt') }
161
+ assert_nothing_raised{ @tar.add_to_archive('temp2.txt') }
162
+ assert_nothing_raised{ @tar.add_to_archive('temp2.txt','temp3.txt') }
163
+ end
164
+
165
+ def test_update_archive
166
+ assert_respond_to(@tar, :update_archive)
167
+ assert_nothing_raised{ @tar.create_archive('*.txt') }
168
+ assert_nothing_raised{ @tar.update_archive('temp2.txt') }
169
+ end
170
+
171
+ def test_extract_archive_basic
172
+ assert_respond_to(@tar, :extract_archive)
173
+ end
174
+
175
+ def test_extract_archive_aliases
176
+ assert_true(Tar::External.instance_method(:extract_archive) == Tar::External.instance_method(:expand_archive))
177
+ assert_true(Tar::External.instance_method(:extract) == Tar::External.instance_method(:expand_archive))
178
+ assert_true(Tar::External.instance_method(:expand) == Tar::External.instance_method(:expand_archive))
179
+ end
180
+
181
+ def test_extract_archive_advanced
182
+ omit_unless(RbConfig::CONFIG['host_os'] =~ /sunos|solaris/){
183
+ assert_nothing_raised{ @tar.tar_program = @@gtar }
184
+ }
185
+ assert_nothing_raised{ @tar.create('*.txt') }
186
+ assert_raises(Tar::Error){ @tar.expand('blah.txt') }
187
+
188
+ assert_nothing_raised{ @tar.extract_archive }
189
+ assert_nothing_raised{ @tar.extract_archive('temp2.txt') }
190
+ end
191
+
192
+ def teardown
193
+ @tar = nil
194
+ File.delete('test.tar') if File.exist?('test.tar')
195
+ File.delete('test.tar.gz') if File.exist?('test.tar.gz')
196
+ File.delete('test.tar.bz2') if File.exist?('test.tar.bz2')
197
+ File.delete('test.tar.zip') if File.exist?('test.tar.zip')
198
+ end
199
+
200
+ def self.shutdown
201
+ @@tar_foudn = nil
202
+ @@gzip_found = nil
203
+ @@bzip2_found = nil
204
+
205
+ File.delete(@@tmp_file1) if File.exist?(@@tmp_file1)
206
+ File.delete(@@tmp_file2) if File.exist?(@@tmp_file2)
207
+ File.delete(@@tmp_file3) if File.exist?(@@tmp_file3)
208
+ end
209
+ end
metadata CHANGED
@@ -1,94 +1,138 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: archive-tar-external
3
- version: !ruby/object:Gem::Version
4
- version: 1.3.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.1
5
5
  platform: ruby
6
- authors:
6
+ authors:
7
7
  - Daniel Berger
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
-
12
- date: 2010-01-16 00:00:00 -07:00
13
- default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIEcDCCAtigAwIBAgIBATANBgkqhkiG9w0BAQsFADA/MREwDwYDVQQDDAhkamJl
14
+ cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
15
+ MB4XDTE4MDMxODE1MjIwN1oXDTI4MDMxNTE1MjIwN1owPzERMA8GA1UEAwwIZGpi
16
+ ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
17
+ bTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALgfaroVM6CI06cxr0/h
18
+ A+j+pc8fgpRgBVmHFaFunq28GPC3IvW7Nvc3Y8SnAW7pP1EQIbhlwRIaQzJ93/yj
19
+ u95KpkP7tA9erypnV7dpzBkzNlX14ACaFD/6pHoXoe2ltBxk3CCyyzx70mTqJpph
20
+ 75IB03ni9a8yqn8pmse+s83bFJOAqddSj009sGPcQO+QOWiNxqYv1n5EHcvj2ebO
21
+ 6hN7YTmhx7aSia4qL/quc4DlIaGMWoAhvML7u1fmo53CYxkKskfN8MOecq2vfEmL
22
+ iLu+SsVVEAufMDDFMXMJlvDsviolUSGMSNRTujkyCcJoXKYYxZSNtIiyd9etI0X3
23
+ ctu0uhrFyrMZXCedutvXNjUolD5r9KGBFSWH1R9u2I3n3SAyFF2yzv/7idQHLJJq
24
+ 74BMnx0FIq6fCpu5slAipvxZ3ZkZpEXZFr3cIBtO1gFvQWW7E/Y3ijliWJS1GQFq
25
+ 058qERadHGu1yu1dojmFRo6W2KZvY9al2yIlbkpDrD5MYQIDAQABo3cwdTAJBgNV
26
+ HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUFZsMapgzJimzsbaBG2Tm8j5e
27
+ AzgwHQYDVR0RBBYwFIESZGpiZXJnOTZAZ21haWwuY29tMB0GA1UdEgQWMBSBEmRq
28
+ YmVyZzk2QGdtYWlsLmNvbTANBgkqhkiG9w0BAQsFAAOCAYEAW2tnYixXQtKxgGXq
29
+ /3iSWG2bLwvxS4go3srO+aRXZHrFUMlJ5W0mCxl03aazxxKTsVVpZD8QZxvK91OQ
30
+ h9zr9JBYqCLcCVbr8SkmYCi/laxIZxsNE5YI8cC8vvlLI7AMgSfPSnn/Epq1GjGY
31
+ 6L1iRcEDtanGCIvjqlCXO9+BmsnCfEVehqZkQHeYczA03tpOWb6pon2wzvMKSsKH
32
+ ks0ApVdstSLz1kzzAqem/uHdG9FyXdbTAwH1G4ZPv69sQAFAOCgAqYmdnzedsQtE
33
+ 1LQfaQrx0twO+CZJPcRLEESjq8ScQxWRRkfuh2VeR7cEU7L7KqT10mtUwrvw7APf
34
+ DYoeCY9KyjIBjQXfbj2ke5u1hZj94Fsq9FfbEQg8ygCgwThnmkTrrKEiMSs3alYR
35
+ ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
36
+ WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
37
+ -----END CERTIFICATE-----
38
+ date:
39
+ dependencies:
40
+ - !ruby/object:Gem::Dependency
16
41
  name: test-unit
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
17
47
  type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
21
51
  - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 2.0.3
24
- version:
25
- - !ruby/object:Gem::Dependency
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ - !ruby/object:Gem::Dependency
26
55
  name: ptools
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
27
61
  type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
31
65
  - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 1.1.7
34
- version:
35
- - !ruby/object:Gem::Dependency
36
- name: win32-open3
37
- type: :runtime
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ - !ruby/object:Gem::Dependency
69
+ name: rake
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
41
72
  - - ">="
42
- - !ruby/object:Gem::Version
43
- version: 0.3.1
44
- version:
45
- description: " The archive-tar-external is a simple wrapper interface for creating\n tar files using your system's tar command. You can also easily compress\n your tar files with your system's compression programs such as zip, gzip,\n or bzip2.\n"
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ description: |2
83
+ The archive-tar-external is a simple wrapper interface for creating
84
+ tar files using your system's tar command. You can also easily compress
85
+ your tar files with your system's compression programs such as zip, gzip,
86
+ or bzip2.
46
87
  email: djberg96@gmail.com
47
88
  executables: []
48
-
49
89
  extensions: []
50
-
51
- extra_rdoc_files:
52
- - README
53
- - CHANGES
54
- - MANIFEST
55
- - doc/tar_external.txt
56
- files:
57
- - archive-tar-external.gemspec
58
- - CHANGES
59
- - doc/tar_external.txt
60
- - lib/archive/tar/external.rb
61
- - MANIFEST
90
+ extra_rdoc_files: []
91
+ files:
62
92
  - Rakefile
63
- - README
93
+ - certs
94
+ - certs/djberg96_pub.pem
95
+ - lib
96
+ - lib/archive-tar-external.rb
97
+ - lib/archive
98
+ - lib/archive/tar
99
+ - lib/archive/tar/external.rb
100
+ - test
64
101
  - test/test_archive_tar_external.rb
65
- has_rdoc: true
66
- homepage: http://www.rubyforge.org/shards
67
- licenses:
68
- - Artistic 2.0
69
- post_install_message:
102
+ - CHANGES.md
103
+ - MANIFEST.md
104
+ - README.md
105
+ - archive-tar-external.gemspec
106
+ - doc
107
+ - doc/archive_tar_external.md
108
+ homepage: http://github.com/djberg96/archive-tar-external
109
+ licenses:
110
+ - Apache-2.0
111
+ metadata:
112
+ homepage_uri: https://github.com/djberg96/archive-tar-external
113
+ bug_tracker_uri: https://github.com/djberg96/archive-tar-external/issues
114
+ changelog_uri: https://github.com/djberg96/archive-tar-external/blob/master/CHANGES
115
+ documentation_uri: https://github.com/djberg96/archive-tar-external/wiki
116
+ source_code_uri: https://github.com/djberg96/archive-tar-external
117
+ wiki_uri: https://github.com/djberg96/archive-tar-external/wiki
118
+ post_install_message:
70
119
  rdoc_options: []
71
-
72
- require_paths:
120
+ require_paths:
73
121
  - lib
74
- required_ruby_version: !ruby/object:Gem::Requirement
75
- requirements:
122
+ required_ruby_version: !ruby/object:Gem::Requirement
123
+ requirements:
76
124
  - - ">="
77
- - !ruby/object:Gem::Version
78
- version: "0"
79
- version:
80
- required_rubygems_version: !ruby/object:Gem::Requirement
81
- requirements:
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ required_rubygems_version: !ruby/object:Gem::Requirement
128
+ requirements:
82
129
  - - ">="
83
- - !ruby/object:Gem::Version
84
- version: "0"
85
- version:
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
86
132
  requirements: []
87
-
88
- rubyforge_project: shards
89
- rubygems_version: 1.3.5
90
- signing_key:
91
- specification_version: 3
133
+ rubygems_version: 3.0.3
134
+ signing_key:
135
+ specification_version: 4
92
136
  summary: A simple way to create tar archives using external calls
93
- test_files:
137
+ test_files:
94
138
  - test/test_archive_tar_external.rb