rwv2 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/History.txt +6 -0
- data/{COPYING → LICENCE.txt} +0 -0
- data/Manifest.txt +1 -1
- data/config.save +9 -9
- data/ext/rwv2/Makefile +121 -58
- data/ext/rwv2/include/rwv2_handlers.h +3 -2
- data/ext/rwv2/mkmf.log +14 -4
- data/ext/rwv2/rwv2.cpp +9 -8
- data/lib/rwv2/rwv2.rb +1 -1
- metadata +13 -11
data/.gemtest
ADDED
File without changes
|
data/History.txt
CHANGED
data/{COPYING → LICENCE.txt}
RENAMED
File without changes
|
data/Manifest.txt
CHANGED
data/config.save
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
+
prefix=/usr/local
|
2
|
+
std-ruby=$prefix/lib/ruby/1.9.1
|
3
|
+
site-ruby-common=$prefix/lib/ruby/site_ruby
|
4
|
+
site-ruby=$prefix/lib/ruby/site_ruby/1.9.1
|
1
5
|
bin-dir=$prefix/bin
|
2
|
-
site-ruby=$prefix/lib/ruby/site_ruby/1.8
|
3
|
-
prefix=/usr
|
4
|
-
ruby-path=/usr/bin/ruby18
|
5
|
-
make-prog=make
|
6
6
|
rb-dir=$site-ruby
|
7
|
-
|
8
|
-
ruby-prog=/usr/bin/ruby18
|
9
|
-
site-ruby-common=$prefix/lib/ruby/site_ruby
|
10
|
-
std-ruby=$prefix/lib/ruby/1.8
|
7
|
+
so-dir=$prefix/lib/ruby/site_ruby/1.9.1/i686-linux
|
11
8
|
data-dir=$prefix/share
|
12
|
-
|
9
|
+
ruby-path=/usr/local/bin/ruby
|
10
|
+
ruby-prog=/usr/local/bin/ruby
|
11
|
+
make-prog=make
|
12
|
+
without-ext=no
|
data/ext/rwv2/Makefile
CHANGED
@@ -1,65 +1,98 @@
|
|
1
1
|
|
2
2
|
SHELL = /bin/sh
|
3
3
|
|
4
|
+
# V=0 quiet, V=1 verbose. other values don't work.
|
5
|
+
V = 0
|
6
|
+
Q1 = $(V:1=)
|
7
|
+
Q = $(Q1:0=@)
|
8
|
+
n=$(NULLCMD)
|
9
|
+
ECHO1 = $(V:1=@$n)
|
10
|
+
ECHO = $(ECHO1:0=@echo)
|
11
|
+
|
4
12
|
#### Start of system configuration section. ####
|
5
13
|
|
6
14
|
srcdir = /home/zeno/.software/rwv2/ext/rwv2
|
7
|
-
topdir = /usr/
|
8
|
-
hdrdir =
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
15
|
+
topdir = /usr/local/include/ruby-1.9.1
|
16
|
+
hdrdir = /usr/local/include/ruby-1.9.1
|
17
|
+
arch_hdrdir = /usr/local/include/ruby-1.9.1/$(arch)
|
18
|
+
VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
|
19
|
+
prefix = $(DESTDIR)/usr/local
|
20
|
+
rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
|
21
|
+
exec_prefix = $(prefix)
|
22
|
+
vendorhdrdir = $(rubyhdrdir)/vendor_ruby
|
23
|
+
sitehdrdir = $(rubyhdrdir)/site_ruby
|
24
|
+
rubyhdrdir = $(includedir)/$(RUBY_BASE_NAME)-$(ruby_version)
|
25
|
+
vendordir = $(rubylibprefix)/vendor_ruby
|
26
|
+
sitedir = $(rubylibprefix)/site_ruby
|
27
|
+
ridir = $(datarootdir)/$(RI_BASE_NAME)
|
28
|
+
mandir = $(datarootdir)/man
|
20
29
|
localedir = $(datarootdir)/locale
|
30
|
+
libdir = $(exec_prefix)/lib
|
31
|
+
psdir = $(docdir)
|
32
|
+
pdfdir = $(docdir)
|
33
|
+
dvidir = $(docdir)
|
21
34
|
htmldir = $(docdir)
|
22
|
-
|
35
|
+
infodir = $(datarootdir)/info
|
36
|
+
docdir = $(datarootdir)/doc/$(PACKAGE)
|
37
|
+
oldincludedir = $(DESTDIR)/usr/include
|
23
38
|
includedir = $(prefix)/include
|
24
|
-
|
25
|
-
sysconfdir = $(DESTDIR)/etc
|
26
|
-
mandir = $(DESTDIR)/usr/share/man
|
27
|
-
libdir = $(exec_prefix)/lib
|
39
|
+
localstatedir = $(prefix)/var
|
28
40
|
sharedstatedir = $(prefix)/com
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
41
|
+
sysconfdir = $(prefix)/etc
|
42
|
+
datadir = $(datarootdir)
|
43
|
+
datarootdir = $(prefix)/share
|
44
|
+
libexecdir = $(exec_prefix)/libexec
|
45
|
+
sbindir = $(exec_prefix)/sbin
|
33
46
|
bindir = $(exec_prefix)/bin
|
47
|
+
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
48
|
+
archdir = $(rubylibdir)/$(arch)
|
34
49
|
sitelibdir = $(sitedir)/$(ruby_version)
|
35
|
-
|
50
|
+
sitearchdir = $(sitelibdir)/$(sitearch)
|
51
|
+
vendorlibdir = $(vendordir)/$(ruby_version)
|
52
|
+
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
36
53
|
|
37
|
-
|
54
|
+
NULLCMD = :
|
55
|
+
|
56
|
+
CC = gcc
|
57
|
+
CXX = g++
|
38
58
|
LIBRUBY = $(LIBRUBY_SO)
|
39
59
|
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
40
60
|
LIBRUBYARG_SHARED = -Wl,-R -Wl,$(libdir) -L$(libdir) -l$(RUBY_SO_NAME)
|
41
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
|
61
|
+
LIBRUBYARG_STATIC = -Wl,-R -Wl,$(libdir) -L$(libdir) -l$(RUBY_SO_NAME)-static
|
62
|
+
OUTFLAG = -o
|
63
|
+
COUTFLAG = -o
|
42
64
|
|
43
65
|
RUBY_EXTCONF_H =
|
44
|
-
|
45
|
-
|
66
|
+
cflags = $(optflags) $(debugflags) $(warnflags)
|
67
|
+
optflags = -O3
|
68
|
+
debugflags = -ggdb
|
69
|
+
warnflags = -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration
|
70
|
+
CFLAGS = -fPIC $(cflags) -fPIC
|
71
|
+
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
|
46
72
|
DEFS = -D_FILE_OFFSET_BITS=64
|
47
|
-
CPPFLAGS = -I./include
|
48
|
-
CXXFLAGS = $(CFLAGS)
|
49
|
-
|
73
|
+
CPPFLAGS = -I./include $(DEFS) $(cppflags)
|
74
|
+
CXXFLAGS = $(CFLAGS) $(cxxflags)
|
75
|
+
ldflags = -L. -rdynamic -Wl,-export-dynamic
|
76
|
+
dldflags =
|
77
|
+
ARCH_FLAG =
|
78
|
+
DLDFLAGS = $(ldflags) $(dldflags)
|
50
79
|
LDSHARED = $(CC) -shared
|
51
|
-
|
80
|
+
LDSHAREDXX = $(CXX) -shared
|
81
|
+
AR = ar
|
52
82
|
EXEEXT =
|
53
83
|
|
54
|
-
|
55
|
-
|
84
|
+
RUBY_BASE_NAME = ruby
|
85
|
+
RUBY_INSTALL_NAME = ruby
|
86
|
+
RUBY_SO_NAME = ruby
|
56
87
|
arch = i686-linux
|
57
|
-
sitearch =
|
58
|
-
ruby_version = 1.
|
59
|
-
ruby = /usr/bin/
|
88
|
+
sitearch = $(arch)
|
89
|
+
ruby_version = 1.9.1
|
90
|
+
ruby = /usr/local/bin/ruby
|
60
91
|
RUBY = $(ruby)
|
61
92
|
RM = rm -f
|
62
|
-
|
93
|
+
RM_RF = $(RUBY) -run -e rm -- -rf
|
94
|
+
RMDIRS = rmdir --ignore-fail-on-non-empty -p
|
95
|
+
MAKEDIRS = /bin/mkdir -p
|
63
96
|
INSTALL = /usr/bin/install -c
|
64
97
|
INSTALL_PROG = $(INSTALL) -m 0755
|
65
98
|
INSTALL_DATA = $(INSTALL) -m 644
|
@@ -75,6 +108,7 @@ DEFFILE =
|
|
75
108
|
|
76
109
|
CLEANFILES = mkmf.log
|
77
110
|
DISTCLEANFILES =
|
111
|
+
DISTCLEANDIRS =
|
78
112
|
|
79
113
|
extout =
|
80
114
|
extout_prefix =
|
@@ -88,63 +122,92 @@ DLLIB = $(TARGET).so
|
|
88
122
|
EXTSTATIC =
|
89
123
|
STATIC_LIB =
|
90
124
|
|
125
|
+
BINDIR = $(bindir)
|
91
126
|
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
92
127
|
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
93
128
|
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
129
|
+
HDRDIR = $(rubyhdrdir)/ruby$(target_prefix)
|
130
|
+
ARCHHDRDIR = $(rubyhdrdir)/$(arch)/ruby$(target_prefix)
|
94
131
|
|
95
132
|
TARGET_SO = $(DLLIB)
|
96
|
-
CLEANLIBS = $(TARGET).so
|
97
|
-
CLEANOBJS = *.o
|
98
|
-
|
99
|
-
all:
|
100
|
-
static:
|
101
|
-
|
102
|
-
clean
|
133
|
+
CLEANLIBS = $(TARGET).so
|
134
|
+
CLEANOBJS = *.o *.bak
|
135
|
+
|
136
|
+
all: $(DLLIB)
|
137
|
+
static: $(STATIC_LIB)
|
138
|
+
.PHONY: all install static install-so install-rb
|
139
|
+
.PHONY: clean clean-so clean-rb
|
140
|
+
|
141
|
+
clean-rb-default::
|
142
|
+
clean-rb::
|
143
|
+
clean-so::
|
144
|
+
clean: clean-so clean-rb-default clean-rb
|
103
145
|
@-$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
|
104
146
|
|
105
|
-
distclean
|
147
|
+
distclean-rb-default::
|
148
|
+
distclean-rb::
|
149
|
+
distclean-so::
|
150
|
+
distclean: clean distclean-so distclean-rb-default distclean-rb
|
106
151
|
@-$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
|
107
152
|
@-$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
|
153
|
+
@-$(RMDIRS) $(DISTCLEANDIRS) 2> /dev/null || true
|
108
154
|
|
109
|
-
realclean:
|
155
|
+
realclean: distclean
|
110
156
|
install: install-so install-rb
|
111
157
|
|
112
158
|
install-so: $(RUBYARCHDIR)
|
113
159
|
install-so: $(RUBYARCHDIR)/$(DLLIB)
|
114
|
-
$(RUBYARCHDIR)/$(DLLIB): $(
|
115
|
-
|
160
|
+
$(RUBYARCHDIR)/$(DLLIB): $(DLLIB)
|
161
|
+
@-$(MAKEDIRS) $(@D)
|
162
|
+
$(INSTALL_PROG) $(DLLIB) $(@D)
|
116
163
|
install-rb: pre-install-rb install-rb-default
|
117
164
|
install-rb-default: pre-install-rb-default
|
118
165
|
pre-install-rb: Makefile
|
119
166
|
pre-install-rb-default: Makefile
|
167
|
+
pre-install-rb-default:
|
168
|
+
$(ECHO) installing default rwv2 libraries
|
120
169
|
$(RUBYARCHDIR):
|
121
|
-
$(MAKEDIRS) $@
|
170
|
+
$(Q) $(MAKEDIRS) $@
|
122
171
|
|
123
172
|
site-install: site-install-so site-install-rb
|
124
173
|
site-install-so: install-so
|
125
174
|
site-install-rb: install-rb
|
126
175
|
|
127
|
-
.SUFFIXES: .c .m .cc .cxx .cpp .C .o
|
176
|
+
.SUFFIXES: .c .m .cc .mm .cxx .cpp .C .o
|
128
177
|
|
129
178
|
.cc.o:
|
130
|
-
$(
|
179
|
+
$(ECHO) compiling $(<)
|
180
|
+
$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $<
|
181
|
+
|
182
|
+
.mm.o:
|
183
|
+
$(ECHO) compiling $(<)
|
184
|
+
$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $<
|
131
185
|
|
132
186
|
.cxx.o:
|
133
|
-
$(
|
187
|
+
$(ECHO) compiling $(<)
|
188
|
+
$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $<
|
134
189
|
|
135
190
|
.cpp.o:
|
136
|
-
$(
|
191
|
+
$(ECHO) compiling $(<)
|
192
|
+
$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $<
|
137
193
|
|
138
194
|
.C.o:
|
139
|
-
$(
|
195
|
+
$(ECHO) compiling $(<)
|
196
|
+
$(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $<
|
140
197
|
|
141
198
|
.c.o:
|
142
|
-
$(
|
199
|
+
$(ECHO) compiling $(<)
|
200
|
+
$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $<
|
201
|
+
|
202
|
+
.m.o:
|
203
|
+
$(ECHO) compiling $(<)
|
204
|
+
$(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $<
|
143
205
|
|
144
206
|
$(DLLIB): $(OBJS) Makefile
|
145
|
-
|
146
|
-
|
207
|
+
$(ECHO) linking shared-object $(DLLIB)
|
208
|
+
@-$(RM) $(@)
|
209
|
+
$(Q) $(LDSHAREDXX) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
|
147
210
|
|
148
211
|
|
149
212
|
|
150
|
-
$(OBJS): ruby.h defines.h
|
213
|
+
$(OBJS): $(hdrdir)/ruby.h $(hdrdir)/ruby/defines.h $(arch_hdrdir)/ruby/config.h
|
@@ -30,7 +30,7 @@
|
|
30
30
|
#include "wv2/ustring.h"
|
31
31
|
#include "wv2/word97_generated.h"
|
32
32
|
#include "wv2/paragraphproperties.h"
|
33
|
-
|
33
|
+
#include <string.h>
|
34
34
|
|
35
35
|
#include "rwv2.h"
|
36
36
|
#include "rwv2_properties.h"
|
@@ -43,7 +43,8 @@ extern "C" {
|
|
43
43
|
} \
|
44
44
|
VALUE val = rb_funcall(target, rb_intern(funcname), 0); \
|
45
45
|
long len; \
|
46
|
-
char * cstr =
|
46
|
+
char * cstr = StringValueCStr(val); \
|
47
|
+
len = strlen(cstr); \
|
47
48
|
if(len != 1) { \
|
48
49
|
rb_raise(rb_eRuntimeError, "InlineReplacementHandler#%s() must return single Character!", funcname); \
|
49
50
|
} \
|
data/ext/rwv2/mkmf.log
CHANGED
@@ -1,11 +1,21 @@
|
|
1
1
|
have_library: checking for main() in -lwv2... -------------------- yes
|
2
2
|
|
3
|
-
"
|
3
|
+
"gcc -o conftest -I/usr/local/include/ruby-1.9.1/i686-linux -I/usr/local/include/ruby-1.9.1/ruby/backward -I/usr/local/include/ruby-1.9.1 -I/home/zeno/.software/rwv2/ext/rwv2 -I./include -D_FILE_OFFSET_BITS=64 -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration -fPIC conftest.c -L. -L/usr/local/lib -Wl,-R/usr/local/lib -L./lib -L. -rdynamic -Wl,-export-dynamic -lstdc++ -Wl,-R -Wl,/usr/local/lib -L/usr/local/lib -lruby -lpthread -lrt -ldl -lcrypt -lm -lc"
|
4
4
|
checked program was:
|
5
5
|
/* begin */
|
6
|
-
1:
|
7
|
-
2:
|
8
|
-
3: int
|
6
|
+
1: #include "ruby.h"
|
7
|
+
2:
|
8
|
+
3: int main() {return 0;}
|
9
|
+
/* end */
|
10
|
+
|
11
|
+
"gcc -o conftest -I/usr/local/include/ruby-1.9.1/i686-linux -I/usr/local/include/ruby-1.9.1/ruby/backward -I/usr/local/include/ruby-1.9.1 -I/home/zeno/.software/rwv2/ext/rwv2 -I./include -D_FILE_OFFSET_BITS=64 -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration -fPIC conftest.c -L. -L/usr/local/lib -Wl,-R/usr/local/lib -L./lib -L. -rdynamic -Wl,-export-dynamic -lstdc++ -Wl,-R -Wl,/usr/local/lib -L/usr/local/lib -lruby -lwv2 -lstdc++ -lpthread -lrt -ldl -lcrypt -lm -lc"
|
12
|
+
checked program was:
|
13
|
+
/* begin */
|
14
|
+
1: #include "ruby.h"
|
15
|
+
2:
|
16
|
+
3: /*top*/
|
17
|
+
4: int main() {return 0;}
|
18
|
+
5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
|
9
19
|
/* end */
|
10
20
|
|
11
21
|
--------------------
|
data/ext/rwv2/rwv2.cpp
CHANGED
@@ -25,6 +25,7 @@
|
|
25
25
|
#include "wv2/parserfactory.h"
|
26
26
|
#include "rwv2_parser.h"
|
27
27
|
#include "errno.h"
|
28
|
+
#include <string.h>
|
28
29
|
|
29
30
|
extern "C" {
|
30
31
|
|
@@ -43,25 +44,25 @@ VALUE rwv2_create_parser(VALUE self, VALUE filename) {
|
|
43
44
|
Rwv2Parser * stub;
|
44
45
|
parser = Data_Make_Struct(cRwv2Parser, Rwv2Parser,
|
45
46
|
rwv2_parser_mark, rwv2_parser_free, stub);
|
46
|
-
|
47
|
+
|
48
|
+
stub->parser = wvWare::ParserFactory::createParser(StringValueCStr(filename));
|
47
49
|
if(!stub->parser)
|
48
50
|
{
|
49
51
|
if(errno == 0)
|
50
|
-
rb_raise(rb_eArgError,"'%s' is not a word-document.",
|
52
|
+
rb_raise(rb_eArgError,"'%s' is not a word-document.", StringValueCStr(filename));
|
51
53
|
else
|
52
|
-
rb_sys_fail(
|
54
|
+
rb_sys_fail(StringValuePtr(filename));
|
53
55
|
}
|
54
56
|
return parser;
|
55
57
|
}
|
56
58
|
VALUE rwv2_create_parser_from_content(VALUE self, VALUE content) {
|
57
59
|
VALUE parser;
|
58
60
|
Rwv2Parser * stub;
|
59
|
-
parser = Data_Make_Struct(cRwv2Parser, Rwv2Parser,
|
60
|
-
rwv2_parser_mark, rwv2_parser_free, stub);
|
61
|
+
parser = Data_Make_Struct(cRwv2Parser, Rwv2Parser, rwv2_parser_mark, rwv2_parser_free, stub);
|
61
62
|
long int len;
|
62
|
-
char * src =
|
63
|
-
|
64
|
-
|
63
|
+
char * src = StringValuePtr(content);
|
64
|
+
len = strlen(src);
|
65
|
+
stub->parser = wvWare::ParserFactory::createParser((const unsigned char *) src, len);
|
65
66
|
if(!stub->parser)
|
66
67
|
{
|
67
68
|
rb_raise(rb_eArgError,"Input is not a word-document.");
|
data/lib/rwv2/rwv2.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rwv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 5
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 1
|
10
|
+
version: 0.6.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Masaomi Hatakeyama, Zeno R.R. Davatz
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2012-01-04 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +26,12 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 41
|
30
30
|
segments:
|
31
31
|
- 2
|
32
|
-
-
|
33
|
-
-
|
34
|
-
version: 2.
|
32
|
+
- 9
|
33
|
+
- 1
|
34
|
+
version: 2.9.1
|
35
35
|
type: :development
|
36
36
|
version_requirements: *id001
|
37
37
|
description: |-
|
@@ -46,13 +46,14 @@ extensions: []
|
|
46
46
|
|
47
47
|
extra_rdoc_files:
|
48
48
|
- History.txt
|
49
|
+
- LICENCE.txt
|
49
50
|
- Manifest.txt
|
50
51
|
- README.txt
|
51
52
|
files:
|
52
|
-
- COPYING
|
53
53
|
- History.txt
|
54
54
|
- INSTALL
|
55
55
|
- InstalledFiles
|
56
|
+
- LICENCE.txt
|
56
57
|
- Manifest.txt
|
57
58
|
- README
|
58
59
|
- README.txt
|
@@ -91,6 +92,7 @@ files:
|
|
91
92
|
- test/data/test8.doc
|
92
93
|
- test/data/test9.doc
|
93
94
|
- test/test_parser.rb
|
95
|
+
- .gemtest
|
94
96
|
has_rdoc: true
|
95
97
|
homepage: http://scm.ywesee.com/?p=rwv2/.git;a=summary
|
96
98
|
licenses: []
|
@@ -122,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
124
|
requirements: []
|
123
125
|
|
124
126
|
rubyforge_project: rwv2
|
125
|
-
rubygems_version: 1.
|
127
|
+
rubygems_version: 1.4.2
|
126
128
|
signing_key:
|
127
129
|
specification_version: 3
|
128
130
|
summary: "Wrapper for the wv2 library: parses Microsoft Word files"
|