thrift 0.5.0 → 0.6.0
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.
- data/Makefile.am +47 -0
- data/Makefile.in +440 -0
- data/Manifest +13 -11
- data/README +1 -1
- data/Rakefile +5 -5
- data/ext/extconf.rb +8 -4
- data/thrift.gemspec +9 -9
- metadata +28 -28
data/Makefile.am
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
#
|
2
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
3
|
+
# or more contributor license agreements. See the NOTICE file
|
4
|
+
# distributed with this work for additional information
|
5
|
+
# regarding copyright ownership. The ASF licenses this file
|
6
|
+
# to you under the Apache License, Version 2.0 (the
|
7
|
+
# "License"); you may not use this file except in compliance
|
8
|
+
# with the License. You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing,
|
13
|
+
# software distributed under the License is distributed on an
|
14
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
# KIND, either express or implied. See the License for the
|
16
|
+
# specific language governing permissions and limitations
|
17
|
+
# under the License.
|
18
|
+
#
|
19
|
+
|
20
|
+
EXTRA_DIST = \
|
21
|
+
CHANGELOG \
|
22
|
+
Rakefile \
|
23
|
+
Manifest \
|
24
|
+
setup.rb \
|
25
|
+
lib \
|
26
|
+
ext \
|
27
|
+
benchmark \
|
28
|
+
script \
|
29
|
+
spec
|
30
|
+
|
31
|
+
all-local:
|
32
|
+
if [ -n "$(RUBY_PREFIX)" ] ; then $(RUBY) setup.rb config --prefix=$(DESTDIR)$(RUBY_PREFIX) --rbdir='$$libdir/ruby' --sodir='$$libdir/ruby' ; elif [ -n "$(DESTDIR)" ] ; then $(RUBY) setup.rb config --prefix=$(DESTDIR) ; else $(RUBY) setup.rb config ; fi
|
33
|
+
$(RUBY) setup.rb setup
|
34
|
+
|
35
|
+
install-exec-hook:
|
36
|
+
$(RUBY) setup.rb install
|
37
|
+
|
38
|
+
# Make sure this doesn't fail if Ruby is not configured.
|
39
|
+
clean-local:
|
40
|
+
RUBY=$(RUBY) ; if test -z "$$RUBY" ; then RUBY=: ; fi ; \
|
41
|
+
$$RUBY setup.rb clean
|
42
|
+
|
43
|
+
check-local: all
|
44
|
+
if HAVE_RSPEC
|
45
|
+
rake spec
|
46
|
+
endif
|
47
|
+
|
data/Makefile.in
ADDED
@@ -0,0 +1,440 @@
|
|
1
|
+
# Makefile.in generated by automake 1.10.1 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
+
# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
@SET_MAKE@
|
16
|
+
|
17
|
+
#
|
18
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
19
|
+
# or more contributor license agreements. See the NOTICE file
|
20
|
+
# distributed with this work for additional information
|
21
|
+
# regarding copyright ownership. The ASF licenses this file
|
22
|
+
# to you under the Apache License, Version 2.0 (the
|
23
|
+
# "License"); you may not use this file except in compliance
|
24
|
+
# with the License. You may obtain a copy of the License at
|
25
|
+
#
|
26
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
27
|
+
#
|
28
|
+
# Unless required by applicable law or agreed to in writing,
|
29
|
+
# software distributed under the License is distributed on an
|
30
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
31
|
+
# KIND, either express or implied. See the License for the
|
32
|
+
# specific language governing permissions and limitations
|
33
|
+
# under the License.
|
34
|
+
#
|
35
|
+
VPATH = @srcdir@
|
36
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
37
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
38
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
39
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
40
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
41
|
+
install_sh_PROGRAM = $(install_sh) -c
|
42
|
+
install_sh_SCRIPT = $(install_sh) -c
|
43
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
44
|
+
transform = $(program_transform_name)
|
45
|
+
NORMAL_INSTALL = :
|
46
|
+
PRE_INSTALL = :
|
47
|
+
POST_INSTALL = :
|
48
|
+
NORMAL_UNINSTALL = :
|
49
|
+
PRE_UNINSTALL = :
|
50
|
+
POST_UNINSTALL = :
|
51
|
+
build_triplet = @build@
|
52
|
+
host_triplet = @host@
|
53
|
+
subdir = lib/rb
|
54
|
+
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
55
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
56
|
+
am__aclocal_m4_deps = $(top_srcdir)/aclocal/ax_boost_base.m4 \
|
57
|
+
$(top_srcdir)/aclocal/ax_javac_and_java.m4 \
|
58
|
+
$(top_srcdir)/aclocal/ax_lib_event.m4 \
|
59
|
+
$(top_srcdir)/aclocal/ax_lib_zlib.m4 \
|
60
|
+
$(top_srcdir)/aclocal/ax_prog_perl_modules.m4 \
|
61
|
+
$(top_srcdir)/aclocal/ax_signed_right_shift.m4 \
|
62
|
+
$(top_srcdir)/aclocal/ax_thrift_internal.m4 \
|
63
|
+
$(top_srcdir)/configure.ac
|
64
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
65
|
+
$(ACLOCAL_M4)
|
66
|
+
mkinstalldirs = $(install_sh) -d
|
67
|
+
CONFIG_HEADER = $(top_builddir)/config.h
|
68
|
+
CONFIG_CLEAN_FILES =
|
69
|
+
SOURCES =
|
70
|
+
DIST_SOURCES =
|
71
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
72
|
+
ACLOCAL = @ACLOCAL@
|
73
|
+
ALLOCA = @ALLOCA@
|
74
|
+
AMTAR = @AMTAR@
|
75
|
+
ANT = @ANT@
|
76
|
+
ANT_FLAGS = @ANT_FLAGS@
|
77
|
+
AR = @AR@
|
78
|
+
AUTOCONF = @AUTOCONF@
|
79
|
+
AUTOHEADER = @AUTOHEADER@
|
80
|
+
AUTOMAKE = @AUTOMAKE@
|
81
|
+
AWK = @AWK@
|
82
|
+
BOOST_CPPFLAGS = @BOOST_CPPFLAGS@
|
83
|
+
BOOST_LDFLAGS = @BOOST_LDFLAGS@
|
84
|
+
BOOST_ROOT_PATH = @BOOST_ROOT_PATH@
|
85
|
+
CABAL = @CABAL@
|
86
|
+
CABAL_CONFIGURE_FLAGS = @CABAL_CONFIGURE_FLAGS@
|
87
|
+
CC = @CC@
|
88
|
+
CCDEPMODE = @CCDEPMODE@
|
89
|
+
CFLAGS = @CFLAGS@
|
90
|
+
CLASSPATH = @CLASSPATH@
|
91
|
+
CPP = @CPP@
|
92
|
+
CPPFLAGS = @CPPFLAGS@
|
93
|
+
CXX = @CXX@
|
94
|
+
CXXCPP = @CXXCPP@
|
95
|
+
CXXDEPMODE = @CXXDEPMODE@
|
96
|
+
CXXFLAGS = @CXXFLAGS@
|
97
|
+
CYGPATH_W = @CYGPATH_W@
|
98
|
+
DEFS = @DEFS@
|
99
|
+
DEPDIR = @DEPDIR@
|
100
|
+
DSYMUTIL = @DSYMUTIL@
|
101
|
+
ECHO = @ECHO@
|
102
|
+
ECHO_C = @ECHO_C@
|
103
|
+
ECHO_N = @ECHO_N@
|
104
|
+
ECHO_T = @ECHO_T@
|
105
|
+
EGREP = @EGREP@
|
106
|
+
ENABLE_COVERAGE = @ENABLE_COVERAGE@
|
107
|
+
ERL = @ERL@
|
108
|
+
ERLANG_INSTALL_LIB_DIR = @ERLANG_INSTALL_LIB_DIR@
|
109
|
+
ERLANG_INSTALL_LIB_DIR_thrift = @ERLANG_INSTALL_LIB_DIR_thrift@
|
110
|
+
ERLANG_LIB_DIR = @ERLANG_LIB_DIR@
|
111
|
+
ERLC = @ERLC@
|
112
|
+
ERLCFLAGS = @ERLCFLAGS@
|
113
|
+
EXEEXT = @EXEEXT@
|
114
|
+
F77 = @F77@
|
115
|
+
FFLAGS = @FFLAGS@
|
116
|
+
GCOV_CFLAGS = @GCOV_CFLAGS@
|
117
|
+
GCOV_CXXFLAGS = @GCOV_CXXFLAGS@
|
118
|
+
GCOV_LDFLAGS = @GCOV_LDFLAGS@
|
119
|
+
GLIB_CFLAGS = @GLIB_CFLAGS@
|
120
|
+
GLIB_LIBS = @GLIB_LIBS@
|
121
|
+
GOBJECT_CFLAGS = @GOBJECT_CFLAGS@
|
122
|
+
GOBJECT_LIBS = @GOBJECT_LIBS@
|
123
|
+
GREP = @GREP@
|
124
|
+
INSTALL = @INSTALL@
|
125
|
+
INSTALL_DATA = @INSTALL_DATA@
|
126
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
127
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
128
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
129
|
+
JAVA_PREFIX = @JAVA_PREFIX@
|
130
|
+
LDFLAGS = @LDFLAGS@
|
131
|
+
LEX = @LEX@
|
132
|
+
LEXLIB = @LEXLIB@
|
133
|
+
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
134
|
+
LIBEVENT_CPPFLAGS = @LIBEVENT_CPPFLAGS@
|
135
|
+
LIBEVENT_LDFLAGS = @LIBEVENT_LDFLAGS@
|
136
|
+
LIBEVENT_LIBS = @LIBEVENT_LIBS@
|
137
|
+
LIBOBJS = @LIBOBJS@
|
138
|
+
LIBS = @LIBS@
|
139
|
+
LIBTOOL = @LIBTOOL@
|
140
|
+
LN_S = @LN_S@
|
141
|
+
LTLIBOBJS = @LTLIBOBJS@
|
142
|
+
MAKEINFO = @MAKEINFO@
|
143
|
+
MKDIR_P = @MKDIR_P@
|
144
|
+
MONO_CFLAGS = @MONO_CFLAGS@
|
145
|
+
MONO_LIBS = @MONO_LIBS@
|
146
|
+
NMEDIT = @NMEDIT@
|
147
|
+
OBJEXT = @OBJEXT@
|
148
|
+
PACKAGE = @PACKAGE@
|
149
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
150
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
151
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
152
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
153
|
+
PACKAGE_URL = @PACKAGE_URL@
|
154
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
155
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
156
|
+
PERL = @PERL@
|
157
|
+
PERL_PREFIX = @PERL_PREFIX@
|
158
|
+
PHP = @PHP@
|
159
|
+
PHP_CONFIG = @PHP_CONFIG@
|
160
|
+
PHP_CONFIG_PREFIX = @PHP_CONFIG_PREFIX@
|
161
|
+
PHP_PREFIX = @PHP_PREFIX@
|
162
|
+
PKG_CONFIG = @PKG_CONFIG@
|
163
|
+
PYTHON = @PYTHON@
|
164
|
+
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
|
165
|
+
PYTHON_PLATFORM = @PYTHON_PLATFORM@
|
166
|
+
PYTHON_PREFIX = @PYTHON_PREFIX@
|
167
|
+
PYTHON_VERSION = @PYTHON_VERSION@
|
168
|
+
PY_PREFIX = @PY_PREFIX@
|
169
|
+
RANLIB = @RANLIB@
|
170
|
+
RSPEC = @RSPEC@
|
171
|
+
RUBY = @RUBY@
|
172
|
+
RUBY_PREFIX = @RUBY_PREFIX@
|
173
|
+
RUNHASKELL = @RUNHASKELL@
|
174
|
+
SED = @SED@
|
175
|
+
SET_MAKE = @SET_MAKE@
|
176
|
+
SHELL = @SHELL@
|
177
|
+
STRIP = @STRIP@
|
178
|
+
TRIAL = @TRIAL@
|
179
|
+
VERSION = @VERSION@
|
180
|
+
YACC = @YACC@
|
181
|
+
YFLAGS = @YFLAGS@
|
182
|
+
ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@
|
183
|
+
ZLIB_LDFLAGS = @ZLIB_LDFLAGS@
|
184
|
+
ZLIB_LIBS = @ZLIB_LIBS@
|
185
|
+
abs_builddir = @abs_builddir@
|
186
|
+
abs_srcdir = @abs_srcdir@
|
187
|
+
abs_top_builddir = @abs_top_builddir@
|
188
|
+
abs_top_srcdir = @abs_top_srcdir@
|
189
|
+
ac_ct_CC = @ac_ct_CC@
|
190
|
+
ac_ct_CXX = @ac_ct_CXX@
|
191
|
+
ac_ct_F77 = @ac_ct_F77@
|
192
|
+
am__include = @am__include@
|
193
|
+
am__leading_dot = @am__leading_dot@
|
194
|
+
am__quote = @am__quote@
|
195
|
+
am__tar = @am__tar@
|
196
|
+
am__untar = @am__untar@
|
197
|
+
bindir = @bindir@
|
198
|
+
build = @build@
|
199
|
+
build_alias = @build_alias@
|
200
|
+
build_cpu = @build_cpu@
|
201
|
+
build_os = @build_os@
|
202
|
+
build_vendor = @build_vendor@
|
203
|
+
builddir = @builddir@
|
204
|
+
datadir = @datadir@
|
205
|
+
datarootdir = @datarootdir@
|
206
|
+
docdir = @docdir@
|
207
|
+
dvidir = @dvidir@
|
208
|
+
exec_prefix = @exec_prefix@
|
209
|
+
host = @host@
|
210
|
+
host_alias = @host_alias@
|
211
|
+
host_cpu = @host_cpu@
|
212
|
+
host_os = @host_os@
|
213
|
+
host_vendor = @host_vendor@
|
214
|
+
htmldir = @htmldir@
|
215
|
+
includedir = @includedir@
|
216
|
+
infodir = @infodir@
|
217
|
+
install_sh = @install_sh@
|
218
|
+
libdir = @libdir@
|
219
|
+
libexecdir = @libexecdir@
|
220
|
+
localedir = @localedir@
|
221
|
+
localstatedir = @localstatedir@
|
222
|
+
mandir = @mandir@
|
223
|
+
mkdir_p = @mkdir_p@
|
224
|
+
oldincludedir = @oldincludedir@
|
225
|
+
pdfdir = @pdfdir@
|
226
|
+
pkgpyexecdir = @pkgpyexecdir@
|
227
|
+
pkgpythondir = @pkgpythondir@
|
228
|
+
prefix = @prefix@
|
229
|
+
program_transform_name = @program_transform_name@
|
230
|
+
psdir = @psdir@
|
231
|
+
pyexecdir = @pyexecdir@
|
232
|
+
pythondir = @pythondir@
|
233
|
+
sbindir = @sbindir@
|
234
|
+
sharedstatedir = @sharedstatedir@
|
235
|
+
srcdir = @srcdir@
|
236
|
+
subdirs = @subdirs@
|
237
|
+
sysconfdir = @sysconfdir@
|
238
|
+
target_alias = @target_alias@
|
239
|
+
top_build_prefix = @top_build_prefix@
|
240
|
+
top_builddir = @top_builddir@
|
241
|
+
top_srcdir = @top_srcdir@
|
242
|
+
EXTRA_DIST = \
|
243
|
+
CHANGELOG \
|
244
|
+
Rakefile \
|
245
|
+
Manifest \
|
246
|
+
setup.rb \
|
247
|
+
lib \
|
248
|
+
ext \
|
249
|
+
benchmark \
|
250
|
+
script \
|
251
|
+
spec
|
252
|
+
|
253
|
+
all: all-am
|
254
|
+
|
255
|
+
.SUFFIXES:
|
256
|
+
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
257
|
+
@for dep in $?; do \
|
258
|
+
case '$(am__configure_deps)' in \
|
259
|
+
*$$dep*) \
|
260
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
261
|
+
&& exit 0; \
|
262
|
+
exit 1;; \
|
263
|
+
esac; \
|
264
|
+
done; \
|
265
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/rb/Makefile'; \
|
266
|
+
cd $(top_srcdir) && \
|
267
|
+
$(AUTOMAKE) --foreign lib/rb/Makefile
|
268
|
+
.PRECIOUS: Makefile
|
269
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
270
|
+
@case '$?' in \
|
271
|
+
*config.status*) \
|
272
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
273
|
+
*) \
|
274
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
275
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
276
|
+
esac;
|
277
|
+
|
278
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
279
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
280
|
+
|
281
|
+
$(top_srcdir)/configure: $(am__configure_deps)
|
282
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
283
|
+
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
284
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
285
|
+
|
286
|
+
mostlyclean-libtool:
|
287
|
+
-rm -f *.lo
|
288
|
+
|
289
|
+
clean-libtool:
|
290
|
+
-rm -rf .libs _libs
|
291
|
+
tags: TAGS
|
292
|
+
TAGS:
|
293
|
+
|
294
|
+
ctags: CTAGS
|
295
|
+
CTAGS:
|
296
|
+
|
297
|
+
|
298
|
+
distdir: $(DISTFILES)
|
299
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
300
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
301
|
+
list='$(DISTFILES)'; \
|
302
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
303
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
304
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
305
|
+
case $$dist_files in \
|
306
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
307
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
308
|
+
sort -u` ;; \
|
309
|
+
esac; \
|
310
|
+
for file in $$dist_files; do \
|
311
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
312
|
+
if test -d $$d/$$file; then \
|
313
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
314
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
315
|
+
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
316
|
+
fi; \
|
317
|
+
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
318
|
+
else \
|
319
|
+
test -f $(distdir)/$$file \
|
320
|
+
|| cp -p $$d/$$file $(distdir)/$$file \
|
321
|
+
|| exit 1; \
|
322
|
+
fi; \
|
323
|
+
done
|
324
|
+
check-am: all-am
|
325
|
+
$(MAKE) $(AM_MAKEFLAGS) check-local
|
326
|
+
check: check-am
|
327
|
+
all-am: Makefile all-local
|
328
|
+
installdirs:
|
329
|
+
install: install-am
|
330
|
+
install-exec: install-exec-am
|
331
|
+
install-data: install-data-am
|
332
|
+
uninstall: uninstall-am
|
333
|
+
|
334
|
+
install-am: all-am
|
335
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
336
|
+
|
337
|
+
installcheck: installcheck-am
|
338
|
+
install-strip:
|
339
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
340
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
341
|
+
`test -z '$(STRIP)' || \
|
342
|
+
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
343
|
+
mostlyclean-generic:
|
344
|
+
|
345
|
+
clean-generic:
|
346
|
+
|
347
|
+
distclean-generic:
|
348
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
349
|
+
|
350
|
+
maintainer-clean-generic:
|
351
|
+
@echo "This command is intended for maintainers to use"
|
352
|
+
@echo "it deletes files that may require special tools to rebuild."
|
353
|
+
clean: clean-am
|
354
|
+
|
355
|
+
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
356
|
+
|
357
|
+
distclean: distclean-am
|
358
|
+
-rm -f Makefile
|
359
|
+
distclean-am: clean-am distclean-generic
|
360
|
+
|
361
|
+
dvi: dvi-am
|
362
|
+
|
363
|
+
dvi-am:
|
364
|
+
|
365
|
+
html: html-am
|
366
|
+
|
367
|
+
info: info-am
|
368
|
+
|
369
|
+
info-am:
|
370
|
+
|
371
|
+
install-data-am:
|
372
|
+
|
373
|
+
install-dvi: install-dvi-am
|
374
|
+
|
375
|
+
install-exec-am:
|
376
|
+
@$(NORMAL_INSTALL)
|
377
|
+
$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
|
378
|
+
|
379
|
+
install-html: install-html-am
|
380
|
+
|
381
|
+
install-info: install-info-am
|
382
|
+
|
383
|
+
install-man:
|
384
|
+
|
385
|
+
install-pdf: install-pdf-am
|
386
|
+
|
387
|
+
install-ps: install-ps-am
|
388
|
+
|
389
|
+
installcheck-am:
|
390
|
+
|
391
|
+
maintainer-clean: maintainer-clean-am
|
392
|
+
-rm -f Makefile
|
393
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
394
|
+
|
395
|
+
mostlyclean: mostlyclean-am
|
396
|
+
|
397
|
+
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
398
|
+
|
399
|
+
pdf: pdf-am
|
400
|
+
|
401
|
+
pdf-am:
|
402
|
+
|
403
|
+
ps: ps-am
|
404
|
+
|
405
|
+
ps-am:
|
406
|
+
|
407
|
+
uninstall-am:
|
408
|
+
|
409
|
+
.MAKE: install-am install-exec-am install-strip
|
410
|
+
|
411
|
+
.PHONY: all all-am all-local check check-am check-local clean \
|
412
|
+
clean-generic clean-libtool clean-local distclean \
|
413
|
+
distclean-generic distclean-libtool distdir dvi dvi-am html \
|
414
|
+
html-am info info-am install install-am install-data \
|
415
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
416
|
+
install-exec-am install-exec-hook install-html install-html-am \
|
417
|
+
install-info install-info-am install-man install-pdf \
|
418
|
+
install-pdf-am install-ps install-ps-am install-strip \
|
419
|
+
installcheck installcheck-am installdirs maintainer-clean \
|
420
|
+
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
421
|
+
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
|
422
|
+
|
423
|
+
|
424
|
+
all-local:
|
425
|
+
if [ -n "$(RUBY_PREFIX)" ] ; then $(RUBY) setup.rb config --prefix=$(DESTDIR)$(RUBY_PREFIX) --rbdir='$$libdir/ruby' --sodir='$$libdir/ruby' ; elif [ -n "$(DESTDIR)" ] ; then $(RUBY) setup.rb config --prefix=$(DESTDIR) ; else $(RUBY) setup.rb config ; fi
|
426
|
+
$(RUBY) setup.rb setup
|
427
|
+
|
428
|
+
install-exec-hook:
|
429
|
+
$(RUBY) setup.rb install
|
430
|
+
|
431
|
+
# Make sure this doesn't fail if Ruby is not configured.
|
432
|
+
clean-local:
|
433
|
+
RUBY=$(RUBY) ; if test -z "$$RUBY" ; then RUBY=: ; fi ; \
|
434
|
+
$$RUBY setup.rb clean
|
435
|
+
|
436
|
+
check-local: all
|
437
|
+
@HAVE_RSPEC_TRUE@ rake spec
|
438
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
439
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
440
|
+
.NOEXPORT:
|
data/Manifest
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
CHANGELOG
|
2
|
+
Makefile.am
|
3
|
+
Makefile.in
|
2
4
|
Manifest
|
3
|
-
Rakefile
|
4
5
|
README
|
5
|
-
|
6
|
-
benchmark/benchmark.rb
|
6
|
+
Rakefile
|
7
7
|
benchmark/Benchmark.thrift
|
8
|
+
benchmark/benchmark.rb
|
8
9
|
benchmark/client.rb
|
9
10
|
benchmark/server.rb
|
10
11
|
benchmark/thin_server.rb
|
@@ -25,14 +26,9 @@ ext/thrift_native.c
|
|
25
26
|
lib/thrift.rb
|
26
27
|
lib/thrift/client.rb
|
27
28
|
lib/thrift/core_ext.rb
|
29
|
+
lib/thrift/core_ext/fixnum.rb
|
28
30
|
lib/thrift/exceptions.rb
|
29
31
|
lib/thrift/processor.rb
|
30
|
-
lib/thrift/struct.rb
|
31
|
-
lib/thrift/struct_union.rb
|
32
|
-
lib/thrift/union.rb
|
33
|
-
lib/thrift/thrift_native.rb
|
34
|
-
lib/thrift/types.rb
|
35
|
-
lib/thrift/core_ext/fixnum.rb
|
36
32
|
lib/thrift/protocol/base_protocol.rb
|
37
33
|
lib/thrift/protocol/binary_protocol.rb
|
38
34
|
lib/thrift/protocol/binary_protocol_accelerated.rb
|
@@ -45,6 +41,9 @@ lib/thrift/server/nonblocking_server.rb
|
|
45
41
|
lib/thrift/server/simple_server.rb
|
46
42
|
lib/thrift/server/thread_pool_server.rb
|
47
43
|
lib/thrift/server/threaded_server.rb
|
44
|
+
lib/thrift/struct.rb
|
45
|
+
lib/thrift/struct_union.rb
|
46
|
+
lib/thrift/thrift_native.rb
|
48
47
|
lib/thrift/transport/base_server_transport.rb
|
49
48
|
lib/thrift/transport/base_transport.rb
|
50
49
|
lib/thrift/transport/buffered_transport.rb
|
@@ -56,9 +55,13 @@ lib/thrift/transport/server_socket.rb
|
|
56
55
|
lib/thrift/transport/socket.rb
|
57
56
|
lib/thrift/transport/unix_server_socket.rb
|
58
57
|
lib/thrift/transport/unix_socket.rb
|
58
|
+
lib/thrift/types.rb
|
59
|
+
lib/thrift/union.rb
|
59
60
|
script/proto_benchmark.rb
|
60
61
|
script/read_struct.rb
|
61
62
|
script/write_struct.rb
|
63
|
+
setup.rb
|
64
|
+
spec/ThriftSpec.thrift
|
62
65
|
spec/base_protocol_spec.rb
|
63
66
|
spec/base_transport_spec.rb
|
64
67
|
spec/binary_protocol_accelerated_spec.rb
|
@@ -78,7 +81,6 @@ spec/socket_spec.rb
|
|
78
81
|
spec/socket_spec_shared.rb
|
79
82
|
spec/spec_helper.rb
|
80
83
|
spec/struct_spec.rb
|
81
|
-
spec/union_spec.rb
|
82
|
-
spec/ThriftSpec.thrift
|
83
84
|
spec/types_spec.rb
|
85
|
+
spec/union_spec.rb
|
84
86
|
spec/unix_socket_spec.rb
|
data/README
CHANGED
data/Rakefile
CHANGED
@@ -77,12 +77,12 @@ begin
|
|
77
77
|
require 'echoe'
|
78
78
|
|
79
79
|
Echoe.new('thrift') do |p|
|
80
|
-
p.author = ['
|
81
|
-
p.email = ['
|
82
|
-
p.summary = "Ruby
|
83
|
-
p.url = "http://
|
80
|
+
p.author = ['Thrift Developers']
|
81
|
+
p.email = ['dev@thrift.apache.org']
|
82
|
+
p.summary = "Ruby bindings for the Apache Thrift RPC system"
|
83
|
+
p.url = "http://thrift.apache.org"
|
84
84
|
p.include_rakefile = true
|
85
|
-
p.version = "0.
|
85
|
+
p.version = "0.6.0"
|
86
86
|
p.rubygems_version = ">= 1.2.0"
|
87
87
|
end
|
88
88
|
|
data/ext/extconf.rb
CHANGED
@@ -17,10 +17,14 @@
|
|
17
17
|
# under the License.
|
18
18
|
#
|
19
19
|
|
20
|
-
|
20
|
+
if defined?(RUBY_ENGINE) && RUBY_ENGINE =~ /jruby/
|
21
|
+
File.open('Makefile', 'w'){|f| f.puts "all:\n\ninstall:\n" }
|
22
|
+
else
|
23
|
+
require 'mkmf'
|
21
24
|
|
22
|
-
$CFLAGS = "-g -O2 -Wall -Werror"
|
25
|
+
$CFLAGS = "-g -O2 -Wall -Werror"
|
23
26
|
|
24
|
-
have_func("strlcpy", "string.h")
|
27
|
+
have_func("strlcpy", "string.h")
|
25
28
|
|
26
|
-
create_makefile 'thrift_native'
|
29
|
+
create_makefile 'thrift_native'
|
30
|
+
end
|
data/thrift.gemspec
CHANGED
@@ -2,22 +2,22 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{thrift}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "0.6.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2.0") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["
|
9
|
-
s.date = %q{
|
10
|
-
s.description = %q{Ruby
|
11
|
-
s.email = ["
|
8
|
+
s.authors = ["Thrift Developers"]
|
9
|
+
s.date = %q{2011-03-03}
|
10
|
+
s.description = %q{Ruby bindings for the Apache Thrift RPC system}
|
11
|
+
s.email = ["dev@thrift.apache.org"]
|
12
12
|
s.extensions = ["ext/extconf.rb"]
|
13
|
-
s.extra_rdoc_files = ["CHANGELOG", "README", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/
|
14
|
-
s.files = ["CHANGELOG", "
|
15
|
-
s.homepage = %q{http://
|
13
|
+
s.extra_rdoc_files = ["CHANGELOG", "README", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/core_ext/fixnum.rb", "lib/thrift/exceptions.rb", "lib/thrift/processor.rb", "lib/thrift/protocol/base_protocol.rb", "lib/thrift/protocol/binary_protocol.rb", "lib/thrift/protocol/binary_protocol_accelerated.rb", "lib/thrift/protocol/compact_protocol.rb", "lib/thrift/serializer/deserializer.rb", "lib/thrift/serializer/serializer.rb", "lib/thrift/server/base_server.rb", "lib/thrift/server/mongrel_http_server.rb", "lib/thrift/server/nonblocking_server.rb", "lib/thrift/server/simple_server.rb", "lib/thrift/server/thread_pool_server.rb", "lib/thrift/server/threaded_server.rb", "lib/thrift/struct.rb", "lib/thrift/struct_union.rb", "lib/thrift/thrift_native.rb", "lib/thrift/transport/base_server_transport.rb", "lib/thrift/transport/base_transport.rb", "lib/thrift/transport/buffered_transport.rb", "lib/thrift/transport/framed_transport.rb", "lib/thrift/transport/http_client_transport.rb", "lib/thrift/transport/io_stream_transport.rb", "lib/thrift/transport/memory_buffer_transport.rb", "lib/thrift/transport/server_socket.rb", "lib/thrift/transport/socket.rb", "lib/thrift/transport/unix_server_socket.rb", "lib/thrift/transport/unix_socket.rb", "lib/thrift/types.rb", "lib/thrift/union.rb"]
|
14
|
+
s.files = ["CHANGELOG", "Makefile.am", "Makefile.in", "Manifest", "README", "Rakefile", "benchmark/Benchmark.thrift", "benchmark/benchmark.rb", "benchmark/client.rb", "benchmark/server.rb", "benchmark/thin_server.rb", "ext/binary_protocol_accelerated.c", "ext/binary_protocol_accelerated.h", "ext/compact_protocol.c", "ext/compact_protocol.h", "ext/constants.h", "ext/extconf.rb", "ext/macros.h", "ext/memory_buffer.c", "ext/memory_buffer.h", "ext/protocol.c", "ext/protocol.h", "ext/struct.c", "ext/struct.h", "ext/thrift_native.c", "lib/thrift.rb", "lib/thrift/client.rb", "lib/thrift/core_ext.rb", "lib/thrift/core_ext/fixnum.rb", "lib/thrift/exceptions.rb", "lib/thrift/processor.rb", "lib/thrift/protocol/base_protocol.rb", "lib/thrift/protocol/binary_protocol.rb", "lib/thrift/protocol/binary_protocol_accelerated.rb", "lib/thrift/protocol/compact_protocol.rb", "lib/thrift/serializer/deserializer.rb", "lib/thrift/serializer/serializer.rb", "lib/thrift/server/base_server.rb", "lib/thrift/server/mongrel_http_server.rb", "lib/thrift/server/nonblocking_server.rb", "lib/thrift/server/simple_server.rb", "lib/thrift/server/thread_pool_server.rb", "lib/thrift/server/threaded_server.rb", "lib/thrift/struct.rb", "lib/thrift/struct_union.rb", "lib/thrift/thrift_native.rb", "lib/thrift/transport/base_server_transport.rb", "lib/thrift/transport/base_transport.rb", "lib/thrift/transport/buffered_transport.rb", "lib/thrift/transport/framed_transport.rb", "lib/thrift/transport/http_client_transport.rb", "lib/thrift/transport/io_stream_transport.rb", "lib/thrift/transport/memory_buffer_transport.rb", "lib/thrift/transport/server_socket.rb", "lib/thrift/transport/socket.rb", "lib/thrift/transport/unix_server_socket.rb", "lib/thrift/transport/unix_socket.rb", "lib/thrift/types.rb", "lib/thrift/union.rb", "script/proto_benchmark.rb", "script/read_struct.rb", "script/write_struct.rb", "setup.rb", "spec/ThriftSpec.thrift", "spec/base_protocol_spec.rb", "spec/base_transport_spec.rb", "spec/binary_protocol_accelerated_spec.rb", "spec/binary_protocol_spec.rb", "spec/binary_protocol_spec_shared.rb", "spec/client_spec.rb", "spec/compact_protocol_spec.rb", "spec/exception_spec.rb", "spec/http_client_spec.rb", "spec/mongrel_http_server_spec.rb", "spec/nonblocking_server_spec.rb", "spec/processor_spec.rb", "spec/serializer_spec.rb", "spec/server_socket_spec.rb", "spec/server_spec.rb", "spec/socket_spec.rb", "spec/socket_spec_shared.rb", "spec/spec_helper.rb", "spec/struct_spec.rb", "spec/types_spec.rb", "spec/union_spec.rb", "spec/unix_socket_spec.rb", "thrift.gemspec"]
|
15
|
+
s.homepage = %q{http://thrift.apache.org}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Thrift", "--main", "README"]
|
17
17
|
s.require_paths = ["lib", "ext"]
|
18
18
|
s.rubyforge_project = %q{thrift}
|
19
19
|
s.rubygems_version = %q{1.3.7}
|
20
|
-
s.summary = %q{Ruby
|
20
|
+
s.summary = %q{Ruby bindings for the Apache Thrift RPC system}
|
21
21
|
|
22
22
|
if s.respond_to? :specification_version then
|
23
23
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
@@ -1,29 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thrift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 7
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 6
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.6.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
|
-
-
|
13
|
+
- Thrift Developers
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-03-03 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
22
|
-
description: Ruby
|
22
|
+
description: Ruby bindings for the Apache Thrift RPC system
|
23
23
|
email:
|
24
|
-
-
|
25
|
-
- kevin.clark@gmail.com
|
26
|
-
- mcslee@facebook.com
|
24
|
+
- dev@thrift.apache.org
|
27
25
|
executables: []
|
28
26
|
|
29
27
|
extensions:
|
@@ -48,14 +46,9 @@ extra_rdoc_files:
|
|
48
46
|
- lib/thrift.rb
|
49
47
|
- lib/thrift/client.rb
|
50
48
|
- lib/thrift/core_ext.rb
|
49
|
+
- lib/thrift/core_ext/fixnum.rb
|
51
50
|
- lib/thrift/exceptions.rb
|
52
51
|
- lib/thrift/processor.rb
|
53
|
-
- lib/thrift/struct.rb
|
54
|
-
- lib/thrift/struct_union.rb
|
55
|
-
- lib/thrift/union.rb
|
56
|
-
- lib/thrift/thrift_native.rb
|
57
|
-
- lib/thrift/types.rb
|
58
|
-
- lib/thrift/core_ext/fixnum.rb
|
59
52
|
- lib/thrift/protocol/base_protocol.rb
|
60
53
|
- lib/thrift/protocol/binary_protocol.rb
|
61
54
|
- lib/thrift/protocol/binary_protocol_accelerated.rb
|
@@ -68,6 +61,9 @@ extra_rdoc_files:
|
|
68
61
|
- lib/thrift/server/simple_server.rb
|
69
62
|
- lib/thrift/server/thread_pool_server.rb
|
70
63
|
- lib/thrift/server/threaded_server.rb
|
64
|
+
- lib/thrift/struct.rb
|
65
|
+
- lib/thrift/struct_union.rb
|
66
|
+
- lib/thrift/thrift_native.rb
|
71
67
|
- lib/thrift/transport/base_server_transport.rb
|
72
68
|
- lib/thrift/transport/base_transport.rb
|
73
69
|
- lib/thrift/transport/buffered_transport.rb
|
@@ -79,14 +75,17 @@ extra_rdoc_files:
|
|
79
75
|
- lib/thrift/transport/socket.rb
|
80
76
|
- lib/thrift/transport/unix_server_socket.rb
|
81
77
|
- lib/thrift/transport/unix_socket.rb
|
78
|
+
- lib/thrift/types.rb
|
79
|
+
- lib/thrift/union.rb
|
82
80
|
files:
|
83
81
|
- CHANGELOG
|
82
|
+
- Makefile.am
|
83
|
+
- Makefile.in
|
84
84
|
- Manifest
|
85
|
-
- Rakefile
|
86
85
|
- README
|
87
|
-
-
|
88
|
-
- benchmark/benchmark.rb
|
86
|
+
- Rakefile
|
89
87
|
- benchmark/Benchmark.thrift
|
88
|
+
- benchmark/benchmark.rb
|
90
89
|
- benchmark/client.rb
|
91
90
|
- benchmark/server.rb
|
92
91
|
- benchmark/thin_server.rb
|
@@ -107,14 +106,9 @@ files:
|
|
107
106
|
- lib/thrift.rb
|
108
107
|
- lib/thrift/client.rb
|
109
108
|
- lib/thrift/core_ext.rb
|
109
|
+
- lib/thrift/core_ext/fixnum.rb
|
110
110
|
- lib/thrift/exceptions.rb
|
111
111
|
- lib/thrift/processor.rb
|
112
|
-
- lib/thrift/struct.rb
|
113
|
-
- lib/thrift/struct_union.rb
|
114
|
-
- lib/thrift/union.rb
|
115
|
-
- lib/thrift/thrift_native.rb
|
116
|
-
- lib/thrift/types.rb
|
117
|
-
- lib/thrift/core_ext/fixnum.rb
|
118
112
|
- lib/thrift/protocol/base_protocol.rb
|
119
113
|
- lib/thrift/protocol/binary_protocol.rb
|
120
114
|
- lib/thrift/protocol/binary_protocol_accelerated.rb
|
@@ -127,6 +121,9 @@ files:
|
|
127
121
|
- lib/thrift/server/simple_server.rb
|
128
122
|
- lib/thrift/server/thread_pool_server.rb
|
129
123
|
- lib/thrift/server/threaded_server.rb
|
124
|
+
- lib/thrift/struct.rb
|
125
|
+
- lib/thrift/struct_union.rb
|
126
|
+
- lib/thrift/thrift_native.rb
|
130
127
|
- lib/thrift/transport/base_server_transport.rb
|
131
128
|
- lib/thrift/transport/base_transport.rb
|
132
129
|
- lib/thrift/transport/buffered_transport.rb
|
@@ -138,9 +135,13 @@ files:
|
|
138
135
|
- lib/thrift/transport/socket.rb
|
139
136
|
- lib/thrift/transport/unix_server_socket.rb
|
140
137
|
- lib/thrift/transport/unix_socket.rb
|
138
|
+
- lib/thrift/types.rb
|
139
|
+
- lib/thrift/union.rb
|
141
140
|
- script/proto_benchmark.rb
|
142
141
|
- script/read_struct.rb
|
143
142
|
- script/write_struct.rb
|
143
|
+
- setup.rb
|
144
|
+
- spec/ThriftSpec.thrift
|
144
145
|
- spec/base_protocol_spec.rb
|
145
146
|
- spec/base_transport_spec.rb
|
146
147
|
- spec/binary_protocol_accelerated_spec.rb
|
@@ -160,13 +161,12 @@ files:
|
|
160
161
|
- spec/socket_spec_shared.rb
|
161
162
|
- spec/spec_helper.rb
|
162
163
|
- spec/struct_spec.rb
|
163
|
-
- spec/union_spec.rb
|
164
|
-
- spec/ThriftSpec.thrift
|
165
164
|
- spec/types_spec.rb
|
165
|
+
- spec/union_spec.rb
|
166
166
|
- spec/unix_socket_spec.rb
|
167
167
|
- thrift.gemspec
|
168
168
|
has_rdoc: true
|
169
|
-
homepage: http://
|
169
|
+
homepage: http://thrift.apache.org
|
170
170
|
licenses: []
|
171
171
|
|
172
172
|
post_install_message:
|
@@ -206,6 +206,6 @@ rubyforge_project: thrift
|
|
206
206
|
rubygems_version: 1.3.7
|
207
207
|
signing_key:
|
208
208
|
specification_version: 3
|
209
|
-
summary: Ruby
|
209
|
+
summary: Ruby bindings for the Apache Thrift RPC system
|
210
210
|
test_files: []
|
211
211
|
|