tarruby 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +7 -1
- data/ext/extconf.rb +1 -1
- data/ext/tarruby.c +1 -1
- metadata +3 -3
data/README.txt
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
Copyright (c) 2008 SUGAWARA Genki <sgwr_dts@yahoo.co.jp>
|
4
4
|
|
5
|
+
== Notice!
|
6
|
+
|
7
|
+
<b>Please use {Libarchive/Ruby}[http://libarchive.rubyforge.org/].</b>
|
8
|
+
|
5
9
|
== Description
|
6
10
|
|
7
11
|
Ruby bindings for libtar.
|
@@ -69,6 +73,7 @@ gem install tarruby
|
|
69
73
|
#Tar.bzopen('foo.tar.bz2', ...
|
70
74
|
|
71
75
|
== License
|
76
|
+
|
72
77
|
Copyright (c) 2008 SUGAWARA Genki <sgwr_dts@yahoo.co.jp>
|
73
78
|
All rights reserved.
|
74
79
|
|
@@ -80,7 +85,7 @@ gem install tarruby
|
|
80
85
|
* Redistributions in binary form must reproduce the above copyright notice,
|
81
86
|
this list of conditions and the following disclaimer in the documentation
|
82
87
|
and/or other materials provided with the distribution.
|
83
|
-
* The names of its contributors may be used to endorse or promote products
|
88
|
+
* The names of its contributors may not be used to endorse or promote products
|
84
89
|
derived from this software without specific prior written permission.
|
85
90
|
|
86
91
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
@@ -96,6 +101,7 @@ gem install tarruby
|
|
96
101
|
DAMAGE.
|
97
102
|
|
98
103
|
=== libtar
|
104
|
+
|
99
105
|
TAR/Ruby contains libtar.
|
100
106
|
|
101
107
|
* libtar is a C library for manipulating POSIX tar files.
|
data/ext/extconf.rb
CHANGED
@@ -13,7 +13,7 @@ end
|
|
13
13
|
if make_libtar and have_header('zlib.h') and have_library('z')
|
14
14
|
have_header('bzlib.h')
|
15
15
|
have_library('bz2')
|
16
|
-
$CPPFLAGS << '-Ilibtar/lib -Ilibtar/listhash'
|
16
|
+
$CPPFLAGS << ' -Ilibtar/lib -Ilibtar/listhash'
|
17
17
|
$objs = %w(tarruby.o libtar/lib/libtar.a)
|
18
18
|
create_makefile('tarruby')
|
19
19
|
end
|
data/ext/tarruby.c
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tarruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- winebarrel
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2009-05-21 00:00:00 +09:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
requirements: []
|
144
144
|
|
145
145
|
rubyforge_project: tarruby
|
146
|
-
rubygems_version: 1.
|
146
|
+
rubygems_version: 1.3.1
|
147
147
|
signing_key:
|
148
148
|
specification_version: 2
|
149
149
|
summary: Ruby bindings for libtar.
|