-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
378 lines (335 loc) · 15.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
---
---
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="ranguba.css" type="text/css" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="icon" href="/favicon.png" />
<title>Fulltext search by Ruby with Groonga - Ranguba</title>
</head>
<body>
<div class="header">
<div class="title">
<a href="./">
<span class="title">Fulltext search by Ruby with Groonga</span>
<span class="title-separator">-</span>
<span class="title-project">Ranguba</span>
</a>
</div>
<ul class="other-languages">
<li id="other-language-japanese" lang="ja" xml:lang="ja"><a href="ja/">日本語</a></li>
</ul>
<ul class="menu">
<li id="menu-reference"><a href="rroonga/en/">Reference Manual</a></li>
<li id="menu-tutorial"><a href="rroonga/en/file.tutorial.html">Tutorial</a></li>
<li id="menu-install"><a href="rroonga/en/file.install.html">Install</a></li>
<li id="menu-developer"><a href="developer.html">Developer</a></li>
</ul>
</div>
<div class="content">
<div class="main">
<h1>The Ranguba project</h1>
<p>
The Ranguba project is a project to provide a fulltext search system built on <a href="http://groonga.org/">Groonga</a>. Groonga is a fast fulltext search engine with culumn store. The project provides libraries to use Groonga features, text extraction utility, search Web interface and so on. Here are provided features:
</p>
<ul>
<li><a href="#about-rroonga">Rroonga</a>: A library to use Groonga features from Ruby.</li>
<li><a href="#about-active-groonga">ActiveGroonga</a>: A library to use Rroonga easily from Web applications.</li>
<li><a href="#about-active-groonga-fabrication">ActiveGroonga Fabrication</a>: A library that adds ActiveGroonga support to Fabrication.</li>
<li><a href="#about-racknga">racknga</a>: Utilities for building and operating a search Web application.</li>
<li><a href="#about-packnga">Packnga</a>: A utility library to package i18n-ed library.</li>
<li><a href="#about-chupa-text">ChupaText</a>: A text extraction utility.</li>
<li><a href="#about-ranguba">Document Search Ranguba</a>: A fulltext search system.</li>
</ul>
<p>
There are additional informations about the project.
</p>
<ul>
<li><a href="#logo">Logo</a></li>
<li><a href="#sticker">Sticker</a></li>
<li><a href="#license">License</a></li>
</ul>
<h2 id="about-rroonga">Rroonga</h2>
<p>
Rroonga provides Groonga's DB-API layer features to Ruby. Features specialized to Web applications built on Rroonga are provided by <a href="#about-active-groonga">ActiveGroonga</a>. Convenience features for search Web applications are provided by <a href="#about-racknga">racknga</a>. All of them have the same merit that you can use Groonga features via Rubyish useful API.
</p>
<h3>Rroonga: The latest release</h3>
<p>
<a href="rroonga/en/file.news.html#version-{{ site.rroonga_version | replace: '.', '-' }}">{{ site.rroonga_version }}</a> is the latest release. It had been released at {{ site.rroonga_release_date }}.
</p>
<h3 id="install-rroonga">Rroonga: Install</h3>
<p>
You can install by RubyGems. (<a href="rroonga/en/file.install.html">detail</a>)
</p>
<pre class="command">% gem install rroonga</pre>
<h3>Rroonga: Document</h3>
<p>
There are a reference manual and a tutorial.
</p>
<ul>
<li><a href="rroonga/en/">Rroonga's reference manual</a></li>
<li><a href="rroonga/en/file.tutorial.html">Rroonga's tutorial</a></li>
</ul>
<h2 id="about-active-groonga">ActiveGroonga</h2>
<p>
ActiveGroonga is a library that provides more easy-to-use fulltext search and data store features. ActiveGroonga is built on Rroonga.
You can access to your data administrated by Groonga via ActiveRecord like API.
</p>
<p>
ActiveGroonga supports Ruby on Rails. You can develop a Rails application that uses Groonga instead of RDB as data store and has rich fulltext search feature.
You can still use the current Rails application knowledge because ActiveGroonga has the following features:
<ul>
<li>Migration</li>
<li>Validation</li>
<li>Relation</li>
</ul>
</p>
<h3>ActiveGroonga: The latest release</h3>
<p>
<a href="activegroonga/en/file.news.html#{{ site.active_groonga_version | replace: '.', '-' }}">{{ site.active_groonga_version }}</a> is the latest release. It had been released at {{ site.active_groonga_release_date }}.
</p>
<p>
This version supports Rails 4 series. If you want to use with old Rails, please use old ActiveGroonga.
</p>
<h3 id="install-active-groonga">ActiveGroonga: Install</h3>
<p>
You can install by RubyGems.
</p>
<pre class="command">% gem install activegroonga</pre>
<h3>ActiveGroonga: Document</h3>
<p>
There is a reference manual.
</p>
<ul>
<li><a href="activegroonga/en/">ActiveGroonga's reference manual</a></li>
</ul>
<h2 id="about-active-groonga-fabrication">ActiveGroonga Fabrication</h2>
<p>
ActiveGroonga Fabrication is a ActiveGroonga generator for <a href="https://github.com/paulelliott/fabrication">Fabrication</a>.
</p>
<h3>ActiveGroonga Fabrication: The latest release</h3>
<p>
1.0.0 is the latest release. It had been released at 2011-04-01.
</p>
<h3 id="install-active-groonga-fabrication">ActiveGroonga Fabrication: Install</h3>
<p>
You can install by RubyGems.
</p>
<pre class="command">% gem install activegroonga-fabrication</pre>
<h3>ActiveGroonga Fabrication: Document</h3>
<p>
Just require. Now, you can use Fabrication for ActiveGroonga.
</p>
<pre class="code">require "active_groonga_fabrication"</pre>
<ul>
<li><a href="activegroonga-fabrication/">ActiveGroonga Fabrication's reference manual</a></li>
</ul>
<h2 id="about-racknga">racknga</h2>
<p>
racknga is a library that provides Rack middlewares and utilities for Rack based Web application. Some of them are based on Rroonga.
</p>
<h3>racknga: The latest release</h3>
<p>
<a href="racknga/en/file.news.html">0.9.3</a> is the latest release. It had been released at 2011-11-12.
</p>
<h3 id="install-racknga">racknga: Install</h3>
<p>
You can install by RubyGems.
</p>
<pre class="command">% gem install racknga</pre>
<h3>racknga: Document</h3>
<p>
There is a reference manual.
</p>
<ul>
<li><a href="racknga/en/">racknga's reference manual</a></li>
</ul>
<h2 id="about-packnga">Packnga</h2>
<p>
Packnga is a utility library to package i18n-ed library.
</p>
<h3>Packnga: The latest release</h3>
<p>
<a href="packnga/en/file.news.html#{{ site.packnga_version | replace: '.', '-' }}">{{ site.packnga_version }}</a> is the latest release. It had been released at {{ site.packnga_release_date }}.
</p>
<h3 id="install-packnga">Packnga: Install</h3>
<p>
You can install by RubyGems.
</p>
<pre class="command">% gem install packnga</pre>
<h3>Packnga: Document</h3>
<p>
There is a reference manual.
</p>
<ul>
<li><a href="packnga/ja/">Packnga's reference manual</a></li>
</ul>
<h2 id="about-chupa-text">ChupaText</h2>
<p>
ChupaText is an extensible text extractor. You can extract text and meta-data from PDF, office documents and so on. You can use it as a command line tool or a Ruby library.
</p>
<h3>ChupaText: The latest release</h3>
<p>
<a href="http://rubydoc.info/gems/chupa-text/file/doc/text/news.md">1.0.4</a> is the latest release. It had been released at 2014-02-17.
</p>
<h3 id="install-chupa-text">ChupaText: Install</h3>
<p>
You can install by RubyGems.
</p>
<pre class="command">% gem install chupa-text</pre>
<h3>ChupaText: Document</h3>
<p>
There is <a href="http://rubydoc.info/gems/chupa-text/">the reference manual</a>.
</p>
<h2 id="about-ranguba">Document Search Ranguba</h2>
<p>
Document Search Ranguba is a fulltext search system using Groonga. It includes crawler, indexer, search interface and more.
</p>
<h3>Document Search Ranguba: The latest release</h3>
<p>
Not released yet.
</p>
<h2 id="logo">Logo</h2>
<p>
The Ranguba project provides logos for Rroonga. You can use them under <a href="http://creativecommons.org/licenses/by/3.0/">the CC-BY 3.0 license</a>. Notation of the author is "The Ranguba project" or "The Groonga project".
</p>
<p>
If you are using Rroonga on your project, please use our logo and spread Rroonga! :-)
</p>
<h3 id="rroonga-logo">A Rroonga logo</h3>
<p>
<a href="logos/rroonga-logo.png">
<img src="logos/rroonga-logo.png"
alt="A Rroonga logo" />
</a>
</p>
<p>
(232x73)
(<a href="logos/rroonga-logo.svg">SVG version</a>)
</p>
<h3 id="rroonga-logo-foreground-white">A white foreground Rroonga logo</h3>
<p>
<a href="logos/rroonga-logo-foreground-white.png">
<img src="logos/rroonga-logo-foreground-white.png"
alt="A white foreground Rroonga logo" />
</a>
</p>
<p>
(232x73)
(<a href="logos/rroonga-logo-foreground-white.svg">SVG version</a>)
</p>
<h3 id="rroonga-icon">A Rroonga icon</h3>
<p>
<a href="logos/rroonga-icon.png">
<img src="logos/rroonga-icon.png"
alt="A Rroonga icon" />
</a>
</p>
<p>
(60x60)
(<a href="logos/rroonga-icon.svg">SVG version</a>)
</p>
<h3 id="rroonga-icon-foreground-white">A white foreground Rroonga icon</h3>
<p>
<a href="logos/rroonga-icon-foreground-white.png">
<img src="logos/rroonga-icon-foreground-white.png"
alt="A white foreground Rroonga icon" />
</a>
</p>
<p>
(60x60)
(<a href="logos/rroonga-icon-foreground-white.svg">SVG version</a>)
</p>
<h3 id="rroonga-icon-full-size">A Rroonga icon (full size version)</h3>
<p>
<a href="logos/rroonga-icon-full-size.png">
<img src="logos/rroonga-icon-full-size.png"
alt="A Rroonga icon (full size version)" />
</a>
</p>
<p>
(200x201)
(<a href="logos/rroonga-icon-full-size.svg">SVG version</a>)
</p>
<h2 id="sticker">Sticker</h2>
<p>
The Ranguba project provides stickers for Rroonga. You can use them under <a href="http://creativecommons.org/licenses/by/3.0/">the CC-BY 3.0 license</a>. You can also use them under more loose license for distributing printed stickers. See the following paragraph for details. Notation of the author is "The Ranguba project" or "The Groonga project".
</p>
<p>If you distribute printed stickers, you don't need to attribute the author. You can print downloaded stickers as is and distribute them without attributing the author. Please print and distribute Rroonga stickers for your friends!</p>
<p>
If you are using Rroonga on your project, please use our stickers and spread Rroonga! :-)
</p>
<h3 id="rroonga-sticker">Rroonga stickers (100㎜×40㎜)</h3>
<table>
<tr>
<th><img src="stickers/rroonga-sticker-white.png" alt="">White background, black foreground</th>
<td><a href="stickers/rroonga-sticker-white.pdf">PDF</a></td>
<td><a href="stickers/rroonga-sticker-white.svg">SVG</a></td>
</tr>
<tr>
<th><img src="stickers/rroonga-sticker-black.png" alt="">Black background, white foraground</th>
<td><a href="stickers/rroonga-sticker-black.pdf">PDF</a></td>
<td><a href="stickers/rroonga-sticker-black.svg">SVG</a></td>
</tr>
<tr>
<th><img src="stickers/rroonga-sticker-cutline.png" alt="">Half cut line</th>
<td><a href="stickers/rroonga-sticker-cutline.pdf">PDF</a></td>
<td><a href="stickers/rroonga-sticker-cutline.svg">SVG</a></td>
</tr>
</table>
<h2 id="license">License</h2>
<p>
Rroonga, ActiveGroonga, racknga and ChupaText are free softwares; you can redistribute it and/or modify it under the terms of <a href="http://www.gnu.org/licenses/lgpl-2.1.txt">the GNU Lesser General Public License version 2.1</a> as published by the Free Software Foundation.
</p>
<p>
Rroonga, ActiveGroonga, racknga and ChupaText are distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See <a href="http://www.gnu.org/licenses/lgpl-2.1.txt">the GNU Lesser General Public License 2.1</a> for more details.
</p>
</div>
<div class="sidebar">
<ul>
<li><a href="http://ranguba.org/">Project page</a></li>
<li><a href="#about-rroonga">Rroonga</a></li>
<li><a href="#about-active-groonga">ActiveGroonga</a></li>
<li><a href="#about-active-groonga-fabrication">ActiveGroonga Fabrication</a></li>
<li><a href="#about-racknga">racknga</a></li>
<li><a href="#about-packnga">Packnga</a></li>
<li><a href="#about-chupa-text">ChupaText</a></li>
<li><a href="#about-ranguba">Document Search Ranguba</a></li>
<li><a href="#logo">Logo</a></li>
<li><a href="#sticker">Sticker</a></li>
<li><a href="#license">License</a></li>
<li>
<a href="http://lists.sourceforge.net/mailman/listinfo/groonga-talk">Mailinglist</a>
</li>
</ul>
</div>
</div>
<div class="sponsors">
<p id="sponsor-rubyforge">
<a href="http://rubyforge.org/projects/groonga/">
<img src="rubyforge.png" width="120" height="24" border="0" alt="The Ranguba project is hosted on RubyForge.org." />
</a>
</p>
<p id="sponsor-github">
<a href="https://github.com/ranguba/">
<img src="github-logo.png" width="100" height="45" border="0" alt="The Ranguba project uses GitHub's git repositories." />
</a>
</p>
<p id="sponsor-tango">
<a href="http://tango.freedesktop.org/">
<img width="120" height="53" border="0" alt="Tango Desktop Project's icons are used." src="tango-logo.png" />
</a>
</p>
<p id="sponsor-famfamfam">
<a href="http://www.famfamfam.com/">
<img width="120" height="18" border="0" alt="famfamfam.com's flags are used." src="famfamfam-logo.png" />
</a>
</p>
</div>
</body>
</html>