rroonga 4.0.4 → 4.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/README.md +73 -0
- data/Rakefile +13 -0
- data/doc/text/news.textile +26 -2
- data/ext/groonga/extconf.rb +3 -1
- data/ext/groonga/rb-grn-context.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +160 -4
- data/ext/groonga/rb-grn-object.c +10 -1
- data/ext/groonga/rb-grn-posting.c +4 -4
- data/ext/groonga/rb-grn-table-key-support.c +9 -4
- data/ext/groonga/rb-grn-table.c +1 -1
- data/ext/groonga/rb-grn-utils.c +2 -6
- data/ext/groonga/rb-grn-variable-size-column.c +2 -2
- data/ext/groonga/rb-grn.h +27 -2
- data/lib/groonga/record.rb +19 -2
- data/lib/groonga/schema.rb +2 -2
- data/rroonga-build.rb +1 -1
- data/rroonga.gemspec +5 -5
- data/test/test-column.rb +6 -6
- data/test/test-database.rb +6 -2
- data/test/test-double-array-trie.rb +18 -0
- data/test/test-expression-builder.rb +3 -2
- data/test/test-hash.rb +13 -1
- data/test/test-plugin.rb +3 -1
- data/test/test-record.rb +10 -0
- data/test/test-variable-size-column.rb +4 -4
- metadata +79 -81
- data/README.textile +0 -73
data/README.textile
DELETED
@@ -1,73 +0,0 @@
|
|
1
|
-
h1. README
|
2
|
-
|
3
|
-
h2. Name
|
4
|
-
|
5
|
-
Rroonga
|
6
|
-
|
7
|
-
h2. Description
|
8
|
-
|
9
|
-
Ruby bindings for Groonga that provide full text search and
|
10
|
-
column store features.
|
11
|
-
|
12
|
-
Rroonga is an extension library to use Groonga's DB-API
|
13
|
-
layer. Rroonga provides Rubyish readable and writable API
|
14
|
-
not C like API. You can use Groonga's fast and highly
|
15
|
-
functional features from Ruby with Rubyish form.
|
16
|
-
|
17
|
-
See the following URL about Groonga.
|
18
|
-
|
19
|
-
* "The Groonga official site":http://groonga.org/
|
20
|
-
|
21
|
-
h2. Authors
|
22
|
-
|
23
|
-
* Kouhei Sutou <kou@clear-code.com>
|
24
|
-
* Tasuku SUENAGA <a@razil.jp>
|
25
|
-
* Daijiro MORI <morita@razil.jp>
|
26
|
-
* Yuto HAYAMIZU <y.hayamizu@gmail.com>
|
27
|
-
* SHIDARA Yoji <dara@shidara.net>
|
28
|
-
* yoshihara haruka <yoshihara@clear-code.com>
|
29
|
-
|
30
|
-
h2. License
|
31
|
-
|
32
|
-
LGPL 2.1. See license/LGPL for details.
|
33
|
-
|
34
|
-
(Kouhei Sutou has a right to change the license including
|
35
|
-
contributed patches.)
|
36
|
-
|
37
|
-
h2. Dependencies
|
38
|
-
|
39
|
-
* Ruby >= 1.9.3
|
40
|
-
* Groonga >= 4.0.4
|
41
|
-
|
42
|
-
h2. Install
|
43
|
-
|
44
|
-
<pre>
|
45
|
-
!!!command_line
|
46
|
-
% sudo gem install rroonga
|
47
|
-
</pre>
|
48
|
-
|
49
|
-
h2. Documents
|
50
|
-
|
51
|
-
* "Reference manual in English":http://ranguba.org/rroonga/en/
|
52
|
-
* "Reference manual in Japanese":http://ranguba.org/rroonga/ja/
|
53
|
-
|
54
|
-
h2. Mailing list
|
55
|
-
|
56
|
-
* English: "groonga-talk":http://lists.sourceforge.net/mailman/listinfo/groonga-talk
|
57
|
-
* Japanese: "groonga-dev":http://lists.sourceforge.jp/mailman/listinfo/groonga-dev
|
58
|
-
|
59
|
-
h2. Thanks
|
60
|
-
|
61
|
-
* Daijiro MORI: sent patches to support the latest Groonga.
|
62
|
-
* Tasuku SUENAGA: sent bug reports.
|
63
|
-
* niku: sent bug reports.
|
64
|
-
* dara:
|
65
|
-
** wrote tests.
|
66
|
-
** fixed bugs.
|
67
|
-
* id:mat_aki: sent bug reports.
|
68
|
-
* @yune_kotomi: sent a bug report.
|
69
|
-
* m_seki: sent bug reports.
|
70
|
-
* ono matope: sent bug reports.
|
71
|
-
* @kamipo: send a bug report.
|
72
|
-
* ongaeshi: sent a patch to build gem on Windows.
|
73
|
-
* mallowlabs: send a patch.
|