rroonga 1.0.1-x86-mingw32 → 1.1.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (387) hide show
  1. data/NEWS.ja.rdoc +146 -0
  2. data/NEWS.rdoc +146 -0
  3. data/README.ja.rdoc +7 -5
  4. data/README.rdoc +6 -5
  5. data/Rakefile +170 -18
  6. data/benchmark/create-wikipedia-database.rb +212 -0
  7. data/benchmark/read-write-many-small-items.rb +0 -0
  8. data/benchmark/repeat-load.rb +213 -0
  9. data/benchmark/select.rb +1052 -0
  10. data/benchmark/write-many-small-items.rb +0 -0
  11. data/example/bookmark.rb +94 -91
  12. data/example/index-html.rb +0 -0
  13. data/ext/groonga/extconf.rb +6 -6
  14. data/ext/groonga/rb-grn-accessor.c +1 -1
  15. data/ext/groonga/rb-grn-array.c +1 -1
  16. data/ext/groonga/rb-grn-column.c +201 -10
  17. data/ext/groonga/rb-grn-context.c +119 -20
  18. data/ext/groonga/rb-grn-database.c +27 -4
  19. data/ext/groonga/rb-grn-exception.c +15 -0
  20. data/ext/groonga/rb-grn-expression.c +14 -10
  21. data/ext/groonga/rb-grn-hash.c +4 -4
  22. data/ext/groonga/rb-grn-index-column.c +10 -6
  23. data/ext/groonga/rb-grn-logger.c +2 -2
  24. data/ext/groonga/rb-grn-object.c +33 -29
  25. data/ext/groonga/{rb-grn-operation.c → rb-grn-operator.c} +89 -87
  26. data/ext/groonga/rb-grn-patricia-trie.c +12 -12
  27. data/ext/groonga/rb-grn-plugin.c +134 -0
  28. data/ext/groonga/rb-grn-procedure.c +1 -1
  29. data/ext/groonga/rb-grn-query.c +7 -7
  30. data/ext/groonga/rb-grn-snippet.c +4 -3
  31. data/ext/groonga/rb-grn-table-cursor.c +1 -1
  32. data/ext/groonga/rb-grn-table-key-support.c +27 -24
  33. data/ext/groonga/rb-grn-table.c +119 -58
  34. data/ext/groonga/rb-grn-type.c +1 -1
  35. data/ext/groonga/rb-grn-utils.c +20 -19
  36. data/ext/groonga/rb-grn-variable.c +1 -1
  37. data/ext/groonga/rb-grn-view-accessor.c +1 -1
  38. data/ext/groonga/rb-grn-view.c +1 -1
  39. data/ext/groonga/rb-grn.h +26 -20
  40. data/ext/groonga/rb-groonga.c +6 -4
  41. data/extconf.rb +10 -4
  42. data/html/developer.html +8 -2
  43. data/html/favicon.ico +0 -0
  44. data/html/favicon.svg +591 -0
  45. data/html/index.html +78 -12
  46. data/html/logo.svg +612 -0
  47. data/html/ranguba.css +92 -7
  48. data/html/readme.svg +256 -0
  49. data/lib/groonga.so +0 -0
  50. data/lib/groonga/context.rb +52 -1
  51. data/lib/groonga/expression-builder.rb +42 -6
  52. data/lib/groonga/record.rb +84 -15
  53. data/lib/groonga/schema.rb +524 -122
  54. data/pkg/rroonga-1.1.0-x86-mingw32/NEWS.ja.rdoc +326 -0
  55. data/pkg/rroonga-1.1.0-x86-mingw32/NEWS.rdoc +328 -0
  56. data/pkg/rroonga-1.1.0-x86-mingw32/README.ja.rdoc +68 -0
  57. data/pkg/rroonga-1.1.0-x86-mingw32/README.rdoc +68 -0
  58. data/pkg/rroonga-1.1.0-x86-mingw32/text/expression.rdoc +285 -0
  59. data/{text/TUTORIAL.ja.rdoc → pkg/rroonga-1.1.0-x86-mingw32/text/tutorial.ja.rdoc} +165 -126
  60. data/pkg/rroonga-1.1.0/NEWS.ja.rdoc +326 -0
  61. data/pkg/rroonga-1.1.0/NEWS.rdoc +328 -0
  62. data/pkg/rroonga-1.1.0/README.ja.rdoc +68 -0
  63. data/pkg/rroonga-1.1.0/README.rdoc +68 -0
  64. data/pkg/rroonga-1.1.0/text/expression.rdoc +285 -0
  65. data/pkg/rroonga-1.1.0/text/tutorial.ja.rdoc +433 -0
  66. data/rroonga-build.rb +3 -3
  67. data/test/run-test.rb +1 -1
  68. data/test/test-array.rb +4 -0
  69. data/test/test-column.rb +31 -1
  70. data/test/test-context-select.rb +45 -14
  71. data/test/test-context.rb +44 -0
  72. data/test/test-database.rb +21 -1
  73. data/test/test-expression-builder.rb +46 -5
  74. data/test/test-fix-size-column.rb +12 -0
  75. data/test/test-hash.rb +10 -4
  76. data/test/test-index-column.rb +33 -0
  77. data/test/test-patricia-trie.rb +6 -0
  78. data/test/test-plugin.rb +29 -0
  79. data/test/test-record.rb +84 -1
  80. data/test/test-remote.rb +3 -2
  81. data/test/test-schema-create-table.rb +32 -2
  82. data/test/test-schema-type.rb +167 -0
  83. data/test/test-schema.rb +159 -12
  84. data/test/test-table-select-weight.rb +20 -1
  85. data/test/test-table-select.rb +12 -0
  86. data/test/test-table.rb +65 -0
  87. data/test/test-variable-size-column.rb +12 -0
  88. data/text/tutorial.ja.rdoc +433 -0
  89. data/vendor/local/bin/grntest.exe +0 -0
  90. data/vendor/local/bin/groonga.exe +0 -0
  91. data/vendor/local/bin/libgroonga-0.dll +0 -0
  92. data/vendor/local/etc/groonga/init.d/redhat/groonga +1 -9
  93. data/vendor/local/include/groonga/groonga.h +156 -6
  94. data/vendor/local/include/groonga/groonga/plugin.h +44 -0
  95. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  96. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  97. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  98. data/vendor/local/lib/groonga/{modules → plugins}/suggest/suggest.la +2 -2
  99. data/vendor/local/lib/libgroonga.a +0 -0
  100. data/vendor/local/lib/libgroonga.dll.a +0 -0
  101. data/vendor/local/lib/libgroonga.la +1 -1
  102. data/vendor/local/lib/pkgconfig/groonga.pc +3 -2
  103. data/vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh +14 -3
  104. data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro_import.sh +3 -1
  105. data/vendor/local/share/groonga/examples/dictionary/gene95/gene_import.sh +19 -3
  106. data/vendor/local/share/groonga/munin/plugins/groonga_cpu_load +0 -0
  107. data/vendor/local/share/groonga/munin/plugins/groonga_cpu_time +0 -0
  108. data/vendor/local/share/groonga/munin/plugins/groonga_disk +0 -0
  109. data/vendor/local/share/groonga/munin/plugins/groonga_memory +0 -0
  110. data/vendor/local/share/groonga/munin/plugins/groonga_n_records +0 -0
  111. data/vendor/local/share/groonga/munin/plugins/groonga_query_performance +0 -0
  112. data/vendor/local/share/groonga/munin/plugins/groonga_status +0 -0
  113. metadata +91 -341
  114. data/html/favicon.xcf +0 -0
  115. data/html/logo.xcf +0 -0
  116. data/lib/1.8/groonga.so +0 -0
  117. data/lib/1.9/groonga.so +0 -0
  118. data/license/GPL +0 -340
  119. data/license/RUBY +0 -59
  120. data/vendor/local/lib/groonga/modules/suggest/suggest.a +0 -0
  121. data/vendor/local/lib/groonga/modules/suggest/suggest.dll +0 -0
  122. data/vendor/local/lib/groonga/modules/suggest/suggest.dll.a +0 -0
  123. data/vendor/local/share/groonga/doc/ja/html/.buildinfo +0 -4
  124. data/vendor/local/share/groonga/doc/ja/html/_sources/characteristic.txt +0 -56
  125. data/vendor/local/share/groonga/doc/ja/html/_sources/commands.txt +0 -10
  126. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/cache_limit.txt +0 -52
  127. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/check.txt +0 -164
  128. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/clearlock.txt +0 -61
  129. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_create.txt +0 -93
  130. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_list.txt +0 -97
  131. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_remove.txt +0 -58
  132. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/define_selector.txt +0 -114
  133. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/defrag.txt +0 -57
  134. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/delete.txt +0 -68
  135. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/dump.txt +0 -62
  136. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/load.txt +0 -98
  137. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_level.txt +0 -65
  138. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_put.txt +0 -69
  139. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_reopen.txt +0 -66
  140. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/quit.txt +0 -38
  141. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/select.txt +0 -247
  142. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/shutdown.txt +0 -38
  143. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/status.txt +0 -59
  144. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/suggest.txt +0 -79
  145. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_create.txt +0 -111
  146. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_list.txt +0 -87
  147. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_remove.txt +0 -50
  148. data/vendor/local/share/groonga/doc/ja/html/_sources/commands/view_add.txt +0 -53
  149. data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/add.txt +0 -102
  150. data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/get.txt +0 -78
  151. data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/set.txt +0 -103
  152. data/vendor/local/share/groonga/doc/ja/html/_sources/developer.txt +0 -10
  153. data/vendor/local/share/groonga/doc/ja/html/_sources/developer/com.txt +0 -18
  154. data/vendor/local/share/groonga/doc/ja/html/_sources/developer/document.txt +0 -38
  155. data/vendor/local/share/groonga/doc/ja/html/_sources/developer/query.txt +0 -212
  156. data/vendor/local/share/groonga/doc/ja/html/_sources/developer/test.txt +0 -114
  157. data/vendor/local/share/groonga/doc/ja/html/_sources/execfile.txt +0 -226
  158. data/vendor/local/share/groonga/doc/ja/html/_sources/expr.txt +0 -43
  159. data/vendor/local/share/groonga/doc/ja/html/_sources/functions.txt +0 -10
  160. data/vendor/local/share/groonga/doc/ja/html/_sources/functions/edit_distance.txt +0 -48
  161. data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_distance.txt +0 -51
  162. data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_circle.txt +0 -54
  163. data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_rectangle.txt +0 -55
  164. data/vendor/local/share/groonga/doc/ja/html/_sources/functions/now.txt +0 -34
  165. data/vendor/local/share/groonga/doc/ja/html/_sources/functions/rand.txt +0 -41
  166. data/vendor/local/share/groonga/doc/ja/html/_sources/grnslap.txt +0 -64
  167. data/vendor/local/share/groonga/doc/ja/html/_sources/grntest.txt +0 -259
  168. data/vendor/local/share/groonga/doc/ja/html/_sources/http.txt +0 -52
  169. data/vendor/local/share/groonga/doc/ja/html/_sources/index.txt +0 -21
  170. data/vendor/local/share/groonga/doc/ja/html/_sources/install.txt +0 -114
  171. data/vendor/local/share/groonga/doc/ja/html/_sources/news.txt +0 -199
  172. data/vendor/local/share/groonga/doc/ja/html/_sources/process.txt +0 -12
  173. data/vendor/local/share/groonga/doc/ja/html/_sources/pseudo_column.txt +0 -38
  174. data/vendor/local/share/groonga/doc/ja/html/_sources/reference.txt +0 -14
  175. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial.txt +0 -10
  176. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial01.txt +0 -293
  177. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial02.txt +0 -100
  178. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial03.txt +0 -72
  179. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial04.txt +0 -111
  180. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial05.txt +0 -65
  181. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial06.txt +0 -91
  182. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial07.txt +0 -92
  183. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial08.txt +0 -53
  184. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial09.txt +0 -9
  185. data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial10.txt +0 -486
  186. data/vendor/local/share/groonga/doc/ja/html/_sources/type.txt +0 -118
  187. data/vendor/local/share/groonga/doc/ja/html/_static/basic.css +0 -509
  188. data/vendor/local/share/groonga/doc/ja/html/_static/default.css +0 -277
  189. data/vendor/local/share/groonga/doc/ja/html/_static/doctools.js +0 -247
  190. data/vendor/local/share/groonga/doc/ja/html/_static/file.png +0 -0
  191. data/vendor/local/share/groonga/doc/ja/html/_static/jquery.js +0 -6240
  192. data/vendor/local/share/groonga/doc/ja/html/_static/minus.png +0 -0
  193. data/vendor/local/share/groonga/doc/ja/html/_static/plus.png +0 -0
  194. data/vendor/local/share/groonga/doc/ja/html/_static/pygments.css +0 -61
  195. data/vendor/local/share/groonga/doc/ja/html/_static/searchtools.js +0 -518
  196. data/vendor/local/share/groonga/doc/ja/html/_static/sidebar.js +0 -147
  197. data/vendor/local/share/groonga/doc/ja/html/_static/underscore.js +0 -16
  198. data/vendor/local/share/groonga/doc/ja/html/characteristic.html +0 -162
  199. data/vendor/local/share/groonga/doc/ja/html/commands.html +0 -139
  200. data/vendor/local/share/groonga/doc/ja/html/commands/cache_limit.html +0 -173
  201. data/vendor/local/share/groonga/doc/ja/html/commands/check.html +0 -285
  202. data/vendor/local/share/groonga/doc/ja/html/commands/clearlock.html +0 -180
  203. data/vendor/local/share/groonga/doc/ja/html/commands/column_create.html +0 -210
  204. data/vendor/local/share/groonga/doc/ja/html/commands/column_list.html +0 -220
  205. data/vendor/local/share/groonga/doc/ja/html/commands/column_remove.html +0 -183
  206. data/vendor/local/share/groonga/doc/ja/html/commands/define_selector.html +0 -221
  207. data/vendor/local/share/groonga/doc/ja/html/commands/defrag.html +0 -177
  208. data/vendor/local/share/groonga/doc/ja/html/commands/delete.html +0 -182
  209. data/vendor/local/share/groonga/doc/ja/html/commands/dump.html +0 -177
  210. data/vendor/local/share/groonga/doc/ja/html/commands/load.html +0 -208
  211. data/vendor/local/share/groonga/doc/ja/html/commands/log_level.html +0 -187
  212. data/vendor/local/share/groonga/doc/ja/html/commands/log_put.html +0 -190
  213. data/vendor/local/share/groonga/doc/ja/html/commands/log_reopen.html +0 -188
  214. data/vendor/local/share/groonga/doc/ja/html/commands/quit.html +0 -156
  215. data/vendor/local/share/groonga/doc/ja/html/commands/select.html +0 -331
  216. data/vendor/local/share/groonga/doc/ja/html/commands/shutdown.html +0 -156
  217. data/vendor/local/share/groonga/doc/ja/html/commands/status.html +0 -179
  218. data/vendor/local/share/groonga/doc/ja/html/commands/suggest.html +0 -191
  219. data/vendor/local/share/groonga/doc/ja/html/commands/table_create.html +0 -222
  220. data/vendor/local/share/groonga/doc/ja/html/commands/table_list.html +0 -202
  221. data/vendor/local/share/groonga/doc/ja/html/commands/table_remove.html +0 -173
  222. data/vendor/local/share/groonga/doc/ja/html/commands/view_add.html +0 -175
  223. data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/add.html +0 -180
  224. data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/get.html +0 -161
  225. data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/set.html +0 -182
  226. data/vendor/local/share/groonga/doc/ja/html/developer.html +0 -118
  227. data/vendor/local/share/groonga/doc/ja/html/developer/com.html +0 -136
  228. data/vendor/local/share/groonga/doc/ja/html/developer/document.html +0 -159
  229. data/vendor/local/share/groonga/doc/ja/html/developer/query.html +0 -336
  230. data/vendor/local/share/groonga/doc/ja/html/developer/test.html +0 -220
  231. data/vendor/local/share/groonga/doc/ja/html/execfile.html +0 -370
  232. data/vendor/local/share/groonga/doc/ja/html/expr.html +0 -157
  233. data/vendor/local/share/groonga/doc/ja/html/functions.html +0 -122
  234. data/vendor/local/share/groonga/doc/ja/html/functions/edit_distance.html +0 -162
  235. data/vendor/local/share/groonga/doc/ja/html/functions/geo_distance.html +0 -170
  236. data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_circle.html +0 -173
  237. data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_rectangle.html +0 -172
  238. data/vendor/local/share/groonga/doc/ja/html/functions/now.html +0 -152
  239. data/vendor/local/share/groonga/doc/ja/html/functions/rand.html +0 -159
  240. data/vendor/local/share/groonga/doc/ja/html/genindex.html +0 -227
  241. data/vendor/local/share/groonga/doc/ja/html/grnslap.html +0 -183
  242. data/vendor/local/share/groonga/doc/ja/html/grntest.html +0 -368
  243. data/vendor/local/share/groonga/doc/ja/html/http.html +0 -163
  244. data/vendor/local/share/groonga/doc/ja/html/index.html +0 -291
  245. data/vendor/local/share/groonga/doc/ja/html/install.html +0 -228
  246. data/vendor/local/share/groonga/doc/ja/html/news.html +0 -310
  247. data/vendor/local/share/groonga/doc/ja/html/objects.inv +0 -0
  248. data/vendor/local/share/groonga/doc/ja/html/process.html +0 -120
  249. data/vendor/local/share/groonga/doc/ja/html/pseudo_column.html +0 -147
  250. data/vendor/local/share/groonga/doc/ja/html/reference.html +0 -174
  251. data/vendor/local/share/groonga/doc/ja/html/search.html +0 -96
  252. data/vendor/local/share/groonga/doc/ja/html/searchindex.js +0 -1
  253. data/vendor/local/share/groonga/doc/ja/html/tutorial.html +0 -172
  254. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial01.html +0 -388
  255. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial02.html +0 -214
  256. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial03.html +0 -183
  257. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial04.html +0 -212
  258. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial05.html +0 -169
  259. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial06.html +0 -209
  260. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial07.html +0 -212
  261. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial08.html +0 -139
  262. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial09.html +0 -114
  263. data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial10.html +0 -458
  264. data/vendor/local/share/groonga/doc/ja/html/type.html +0 -217
  265. data/vendor/local/share/groonga/doc/ja/source/__init__.py +0 -0
  266. data/vendor/local/share/groonga/doc/ja/source/characteristic.txt +0 -56
  267. data/vendor/local/share/groonga/doc/ja/source/commands.txt +0 -10
  268. data/vendor/local/share/groonga/doc/ja/source/commands/cache_limit.txt +0 -52
  269. data/vendor/local/share/groonga/doc/ja/source/commands/check.txt +0 -164
  270. data/vendor/local/share/groonga/doc/ja/source/commands/clearlock.txt +0 -61
  271. data/vendor/local/share/groonga/doc/ja/source/commands/column_create.txt +0 -93
  272. data/vendor/local/share/groonga/doc/ja/source/commands/column_list.txt +0 -97
  273. data/vendor/local/share/groonga/doc/ja/source/commands/column_remove.txt +0 -58
  274. data/vendor/local/share/groonga/doc/ja/source/commands/define_selector.txt +0 -114
  275. data/vendor/local/share/groonga/doc/ja/source/commands/defrag.txt +0 -57
  276. data/vendor/local/share/groonga/doc/ja/source/commands/delete.txt +0 -68
  277. data/vendor/local/share/groonga/doc/ja/source/commands/dump.txt +0 -62
  278. data/vendor/local/share/groonga/doc/ja/source/commands/load.txt +0 -98
  279. data/vendor/local/share/groonga/doc/ja/source/commands/log_level.txt +0 -65
  280. data/vendor/local/share/groonga/doc/ja/source/commands/log_put.txt +0 -69
  281. data/vendor/local/share/groonga/doc/ja/source/commands/log_reopen.txt +0 -66
  282. data/vendor/local/share/groonga/doc/ja/source/commands/quit.txt +0 -38
  283. data/vendor/local/share/groonga/doc/ja/source/commands/select.txt +0 -247
  284. data/vendor/local/share/groonga/doc/ja/source/commands/shutdown.txt +0 -38
  285. data/vendor/local/share/groonga/doc/ja/source/commands/status.txt +0 -59
  286. data/vendor/local/share/groonga/doc/ja/source/commands/table_create.txt +0 -111
  287. data/vendor/local/share/groonga/doc/ja/source/commands/table_list.txt +0 -87
  288. data/vendor/local/share/groonga/doc/ja/source/commands/table_remove.txt +0 -50
  289. data/vendor/local/share/groonga/doc/ja/source/commands/view_add.txt +0 -53
  290. data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/add.txt +0 -102
  291. data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/get.txt +0 -78
  292. data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/set.txt +0 -103
  293. data/vendor/local/share/groonga/doc/ja/source/conf.py +0 -265
  294. data/vendor/local/share/groonga/doc/ja/source/developer.txt +0 -10
  295. data/vendor/local/share/groonga/doc/ja/source/developer/com.txt +0 -18
  296. data/vendor/local/share/groonga/doc/ja/source/developer/document.txt +0 -38
  297. data/vendor/local/share/groonga/doc/ja/source/developer/query.txt +0 -212
  298. data/vendor/local/share/groonga/doc/ja/source/developer/test.txt +0 -114
  299. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-1.log +0 -6
  300. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-10.log +0 -5
  301. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-11.log +0 -5
  302. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-12.log +0 -5
  303. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-13.log +0 -5
  304. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-14.log +0 -9
  305. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-15.log +0 -5
  306. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-16.log +0 -5
  307. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-17.log +0 -5
  308. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-2.log +0 -5
  309. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-3.log +0 -5
  310. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-4.log +0 -7
  311. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-5.log +0 -5
  312. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-6.log +0 -5
  313. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-7.log +0 -16
  314. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-8.log +0 -5
  315. data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-9.log +0 -5
  316. data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-1.log +0 -8
  317. data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-2.log +0 -6
  318. data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-3.log +0 -12
  319. data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-1.log +0 -18
  320. data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-2.log +0 -10
  321. data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-3.log +0 -10
  322. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-1.log +0 -5
  323. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-2.log +0 -7
  324. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-3.log +0 -7
  325. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-4.log +0 -13
  326. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-5.log +0 -5
  327. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-6.log +0 -5
  328. data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-7.log +0 -5
  329. data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-1.log +0 -24
  330. data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-2.log +0 -5
  331. data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-3.log +0 -5
  332. data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-4.log +0 -5
  333. data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-5.log +0 -5
  334. data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-6.log +0 -5
  335. data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-1.log +0 -25
  336. data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-2.log +0 -9
  337. data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-3.log +0 -21
  338. data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-4.log +0 -7
  339. data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-5.log +0 -5
  340. data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-1.log +0 -22
  341. data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-2.log +0 -9
  342. data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-3.log +0 -20
  343. data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-4.log +0 -9
  344. data/vendor/local/share/groonga/doc/ja/source/example/tutorial08-1.log +0 -14
  345. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-1.log +0 -5
  346. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-10.log +0 -5
  347. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-2.log +0 -5
  348. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-3.log +0 -5
  349. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-4.log +0 -5
  350. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-5.log +0 -5
  351. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-6.log +0 -5
  352. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-7.log +0 -5
  353. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-8.log +0 -5
  354. data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-9.log +0 -5
  355. data/vendor/local/share/groonga/doc/ja/source/execfile.txt +0 -226
  356. data/vendor/local/share/groonga/doc/ja/source/expr.txt +0 -43
  357. data/vendor/local/share/groonga/doc/ja/source/functions.txt +0 -10
  358. data/vendor/local/share/groonga/doc/ja/source/functions/edit_distance.txt +0 -48
  359. data/vendor/local/share/groonga/doc/ja/source/functions/geo_distance.txt +0 -51
  360. data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_circle.txt +0 -54
  361. data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_rectangle.txt +0 -55
  362. data/vendor/local/share/groonga/doc/ja/source/functions/now.txt +0 -34
  363. data/vendor/local/share/groonga/doc/ja/source/functions/rand.txt +0 -41
  364. data/vendor/local/share/groonga/doc/ja/source/grnslap.txt +0 -64
  365. data/vendor/local/share/groonga/doc/ja/source/grntest.txt +0 -259
  366. data/vendor/local/share/groonga/doc/ja/source/http.txt +0 -52
  367. data/vendor/local/share/groonga/doc/ja/source/index.txt +0 -21
  368. data/vendor/local/share/groonga/doc/ja/source/install.txt +0 -114
  369. data/vendor/local/share/groonga/doc/ja/source/news.txt +0 -199
  370. data/vendor/local/share/groonga/doc/ja/source/process.txt +0 -12
  371. data/vendor/local/share/groonga/doc/ja/source/pseudo_column.txt +0 -38
  372. data/vendor/local/share/groonga/doc/ja/source/rdoc.py +0 -762
  373. data/vendor/local/share/groonga/doc/ja/source/reference.txt +0 -14
  374. data/vendor/local/share/groonga/doc/ja/source/tutorial.txt +0 -10
  375. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial01.txt +0 -293
  376. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial02.txt +0 -100
  377. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial03.txt +0 -72
  378. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial04.txt +0 -111
  379. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial05.txt +0 -65
  380. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial06.txt +0 -91
  381. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial07.txt +0 -92
  382. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial08.txt +0 -53
  383. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial09.txt +0 -9
  384. data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial10.txt +0 -486
  385. data/vendor/local/share/groonga/doc/ja/source/type.txt +0 -118
  386. data/vendor/local/share/groonga/doc/ja/source/update_execution_example.py +0 -113
  387. data/vendor/local/share/man/man1/groonga.1 +0 -5498
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rroonga
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 0
9
8
  - 1
10
- version: 1.0.1
9
+ - 0
10
+ version: 1.1.0
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - Kouhei Sutou
@@ -19,39 +19,25 @@ autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
21
 
22
- date: 2010-09-16 00:00:00 +09:00
22
+ date: 2011-02-16 00:00:00 +09:00
23
23
  default_executable:
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
- name: rubyforge
26
+ name: pkg-config
27
27
  prerelease: false
28
28
  requirement: &id001 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- hash: 7
33
+ hash: 25
34
34
  segments:
35
- - 2
35
+ - 1
36
36
  - 0
37
- - 4
38
- version: 2.0.4
39
- type: :development
37
+ - 7
38
+ version: 1.0.7
39
+ type: :runtime
40
40
  version_requirements: *id001
41
- - !ruby/object:Gem::Dependency
42
- name: pkg-config
43
- prerelease: false
44
- requirement: &id002 !ruby/object:Gem::Requirement
45
- none: false
46
- requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- hash: 3
50
- segments:
51
- - 0
52
- version: "0"
53
- type: :development
54
- version_requirements: *id002
55
41
  description: |-
56
42
  rroonga is a extension library to use groonga's DB-API
57
43
  layer. rroonga provides Rubyish readable and writable
@@ -65,12 +51,24 @@ executables: []
65
51
  extensions: []
66
52
 
67
53
  extra_rdoc_files:
68
- - text/expression.rdoc
69
- - text/TUTORIAL.ja.rdoc
54
+ - NEWS.ja.rdoc
70
55
  - NEWS.rdoc
71
- - README.rdoc
56
+ - pkg/rroonga-1.1.0/NEWS.ja.rdoc
57
+ - pkg/rroonga-1.1.0/NEWS.rdoc
58
+ - pkg/rroonga-1.1.0/README.ja.rdoc
59
+ - pkg/rroonga-1.1.0/README.rdoc
60
+ - pkg/rroonga-1.1.0/text/expression.rdoc
61
+ - pkg/rroonga-1.1.0/text/tutorial.ja.rdoc
62
+ - pkg/rroonga-1.1.0-x86-mingw32/NEWS.ja.rdoc
63
+ - pkg/rroonga-1.1.0-x86-mingw32/NEWS.rdoc
64
+ - pkg/rroonga-1.1.0-x86-mingw32/README.ja.rdoc
65
+ - pkg/rroonga-1.1.0-x86-mingw32/README.rdoc
66
+ - pkg/rroonga-1.1.0-x86-mingw32/text/expression.rdoc
67
+ - pkg/rroonga-1.1.0-x86-mingw32/text/tutorial.ja.rdoc
72
68
  - README.ja.rdoc
73
- - NEWS.ja.rdoc
69
+ - README.rdoc
70
+ - text/expression.rdoc
71
+ - text/tutorial.ja.rdoc
74
72
  files:
75
73
  - AUTHORS
76
74
  - NEWS.ja.rdoc
@@ -79,7 +77,10 @@ files:
79
77
  - README.rdoc
80
78
  - Rakefile
81
79
  - benchmark/common.rb
80
+ - benchmark/create-wikipedia-database.rb
82
81
  - benchmark/read-write-many-small-items.rb
82
+ - benchmark/repeat-load.rb
83
+ - benchmark/select.rb
83
84
  - benchmark/write-many-small-items.rb
84
85
  - example/bookmark.rb
85
86
  - example/index-html.rb
@@ -105,9 +106,10 @@ files:
105
106
  - ext/groonga/rb-grn-index-column.c
106
107
  - ext/groonga/rb-grn-logger.c
107
108
  - ext/groonga/rb-grn-object.c
108
- - ext/groonga/rb-grn-operation.c
109
+ - ext/groonga/rb-grn-operator.c
109
110
  - ext/groonga/rb-grn-patricia-trie-cursor.c
110
111
  - ext/groonga/rb-grn-patricia-trie.c
112
+ - ext/groonga/rb-grn-plugin.c
111
113
  - ext/groonga/rb-grn-procedure.c
112
114
  - ext/groonga/rb-grn-query.c
113
115
  - ext/groonga/rb-grn-record.c
@@ -132,15 +134,16 @@ files:
132
134
  - html/developer.svg
133
135
  - html/download.svg
134
136
  - html/favicon.ico
135
- - html/favicon.xcf
137
+ - html/favicon.svg
136
138
  - html/footer.html.erb
137
139
  - html/head.html.erb
138
140
  - html/header.html.erb
139
141
  - html/heading-mark.svg
140
142
  - html/index.html
141
143
  - html/install.svg
142
- - html/logo.xcf
144
+ - html/logo.svg
143
145
  - html/ranguba.css
146
+ - html/readme.svg
144
147
  - html/tutorial.svg
145
148
  - lib/groonga.rb
146
149
  - lib/groonga/context.rb
@@ -150,9 +153,7 @@ files:
150
153
  - lib/groonga/record.rb
151
154
  - lib/groonga/schema.rb
152
155
  - lib/groonga/view-record.rb
153
- - license/GPL
154
156
  - license/LGPL
155
- - license/RUBY
156
157
  - misc/grnop2ruby.rb
157
158
  - rroonga-build.rb
158
159
  - test/.gitignore
@@ -174,11 +175,13 @@ files:
174
175
  - test/test-logger.rb
175
176
  - test/test-pagination.rb
176
177
  - test/test-patricia-trie.rb
178
+ - test/test-plugin.rb
177
179
  - test/test-procedure.rb
178
180
  - test/test-query.rb
179
181
  - test/test-record.rb
180
182
  - test/test-remote.rb
181
183
  - test/test-schema-create-table.rb
184
+ - test/test-schema-type.rb
182
185
  - test/test-schema-view.rb
183
186
  - test/test-schema.rb
184
187
  - test/test-snippet.rb
@@ -195,332 +198,79 @@ files:
195
198
  - test/test-vector-column.rb
196
199
  - test/test-version.rb
197
200
  - test/test-view.rb
198
- - text/TUTORIAL.ja.rdoc
199
201
  - text/expression.rdoc
200
- - lib/1.8/groonga.so
201
- - lib/1.9/groonga.so
202
+ - text/tutorial.ja.rdoc
203
+ - pkg/rroonga-1.1.0/NEWS.ja.rdoc
204
+ - pkg/rroonga-1.1.0/NEWS.rdoc
205
+ - pkg/rroonga-1.1.0/README.ja.rdoc
206
+ - pkg/rroonga-1.1.0/README.rdoc
207
+ - pkg/rroonga-1.1.0/text/expression.rdoc
208
+ - pkg/rroonga-1.1.0/text/tutorial.ja.rdoc
209
+ - pkg/rroonga-1.1.0-x86-mingw32/NEWS.ja.rdoc
210
+ - pkg/rroonga-1.1.0-x86-mingw32/NEWS.rdoc
211
+ - pkg/rroonga-1.1.0-x86-mingw32/README.ja.rdoc
212
+ - pkg/rroonga-1.1.0-x86-mingw32/README.rdoc
213
+ - pkg/rroonga-1.1.0-x86-mingw32/text/expression.rdoc
214
+ - pkg/rroonga-1.1.0-x86-mingw32/text/tutorial.ja.rdoc
215
+ - vendor/local/share/groonga/munin/plugins/groonga_status
216
+ - vendor/local/share/groonga/munin/plugins/groonga_query_performance
217
+ - vendor/local/share/groonga/munin/plugins/groonga_n_records
218
+ - vendor/local/share/groonga/munin/plugins/groonga_memory
219
+ - vendor/local/share/groonga/munin/plugins/groonga_disk
220
+ - vendor/local/share/groonga/munin/plugins/groonga_cpu_time
221
+ - vendor/local/share/groonga/munin/plugins/groonga_cpu_load
202
222
  - vendor/local/share/groonga/examples/dictionary/readme.txt
223
+ - vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
224
+ - vendor/local/share/groonga/examples/dictionary/init_db.sh
225
+ - vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.4.2.min.js
226
+ - vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js
227
+ - vendor/local/share/groonga/examples/dictionary/html/index.html
228
+ - vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css
203
229
  - vendor/local/share/groonga/examples/dictionary/gene95/gene_import.sh
204
230
  - vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb
205
- - vendor/local/share/groonga/examples/dictionary/init_db.sh
206
231
  - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro_import.sh
207
232
  - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb
208
- - vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js
209
- - vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.4.2.min.js
210
- - vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css
211
- - vendor/local/share/groonga/examples/dictionary/html/index.html
212
- - vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
213
- - vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
214
233
  - vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh
215
- - vendor/local/share/groonga/doc/ja/source/index.txt
216
- - vendor/local/share/groonga/doc/ja/source/rdoc.py
217
- - vendor/local/share/groonga/doc/ja/source/commands/clearlock.txt
218
- - vendor/local/share/groonga/doc/ja/source/commands/check.txt
219
- - vendor/local/share/groonga/doc/ja/source/commands/column_remove.txt
220
- - vendor/local/share/groonga/doc/ja/source/commands/define_selector.txt
221
- - vendor/local/share/groonga/doc/ja/source/commands/column_list.txt
222
- - vendor/local/share/groonga/doc/ja/source/commands/shutdown.txt
223
- - vendor/local/share/groonga/doc/ja/source/commands/table_create.txt
224
- - vendor/local/share/groonga/doc/ja/source/commands/log_reopen.txt
225
- - vendor/local/share/groonga/doc/ja/source/commands/quit.txt
226
- - vendor/local/share/groonga/doc/ja/source/commands/dump.txt
227
- - vendor/local/share/groonga/doc/ja/source/commands/delete.txt
228
- - vendor/local/share/groonga/doc/ja/source/commands/table_remove.txt
229
- - vendor/local/share/groonga/doc/ja/source/commands/table_list.txt
230
- - vendor/local/share/groonga/doc/ja/source/commands/log_level.txt
231
- - vendor/local/share/groonga/doc/ja/source/commands/cache_limit.txt
232
- - vendor/local/share/groonga/doc/ja/source/commands/select.txt
233
- - vendor/local/share/groonga/doc/ja/source/commands/load.txt
234
- - vendor/local/share/groonga/doc/ja/source/commands/log_put.txt
235
- - vendor/local/share/groonga/doc/ja/source/commands/defrag.txt
236
- - vendor/local/share/groonga/doc/ja/source/commands/column_create.txt
237
- - vendor/local/share/groonga/doc/ja/source/commands/status.txt
238
- - vendor/local/share/groonga/doc/ja/source/commands/view_add.txt
239
- - vendor/local/share/groonga/doc/ja/source/developer/com.txt
240
- - vendor/local/share/groonga/doc/ja/source/developer/document.txt
241
- - vendor/local/share/groonga/doc/ja/source/developer/query.txt
242
- - vendor/local/share/groonga/doc/ja/source/developer/test.txt
243
- - vendor/local/share/groonga/doc/ja/source/pseudo_column.txt
244
- - vendor/local/share/groonga/doc/ja/source/developer.txt
245
- - vendor/local/share/groonga/doc/ja/source/conf.py
246
- - vendor/local/share/groonga/doc/ja/source/process.txt
247
- - vendor/local/share/groonga/doc/ja/source/functions.txt
248
- - vendor/local/share/groonga/doc/ja/source/execfile.txt
249
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-5.log
250
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-13.log
251
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-11.log
252
- - vendor/local/share/groonga/doc/ja/source/example/tutorial07-3.log
253
- - vendor/local/share/groonga/doc/ja/source/example/tutorial06-2.log
254
- - vendor/local/share/groonga/doc/ja/source/example/tutorial02-1.log
255
- - vendor/local/share/groonga/doc/ja/source/example/tutorial05-2.log
256
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-2.log
257
- - vendor/local/share/groonga/doc/ja/source/example/tutorial03-2.log
258
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-1.log
259
- - vendor/local/share/groonga/doc/ja/source/example/tutorial07-4.log
260
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-15.log
261
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-4.log
262
- - vendor/local/share/groonga/doc/ja/source/example/tutorial07-1.log
263
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-9.log
264
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-1.log
265
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-7.log
266
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-2.log
267
- - vendor/local/share/groonga/doc/ja/source/example/tutorial06-3.log
268
- - vendor/local/share/groonga/doc/ja/source/example/tutorial03-3.log
269
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-7.log
270
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-7.log
271
- - vendor/local/share/groonga/doc/ja/source/example/tutorial06-4.log
272
- - vendor/local/share/groonga/doc/ja/source/example/tutorial05-1.log
273
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-10.log
274
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-1.log
275
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-9.log
276
- - vendor/local/share/groonga/doc/ja/source/example/tutorial05-3.log
277
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-16.log
278
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-8.log
279
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-14.log
280
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-6.log
281
- - vendor/local/share/groonga/doc/ja/source/example/tutorial07-2.log
282
- - vendor/local/share/groonga/doc/ja/source/example/tutorial06-1.log
283
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-5.log
284
- - vendor/local/share/groonga/doc/ja/source/example/tutorial02-2.log
285
- - vendor/local/share/groonga/doc/ja/source/example/tutorial05-5.log
286
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-10.log
287
- - vendor/local/share/groonga/doc/ja/source/example/tutorial05-6.log
288
- - vendor/local/share/groonga/doc/ja/source/example/tutorial06-5.log
289
- - vendor/local/share/groonga/doc/ja/source/example/tutorial08-1.log
290
- - vendor/local/share/groonga/doc/ja/source/example/tutorial05-4.log
291
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-3.log
292
- - vendor/local/share/groonga/doc/ja/source/example/tutorial02-3.log
293
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-3.log
294
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-6.log
295
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-12.log
296
- - vendor/local/share/groonga/doc/ja/source/example/tutorial03-1.log
297
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-3.log
298
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-8.log
299
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-6.log
300
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-17.log
301
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-4.log
302
- - vendor/local/share/groonga/doc/ja/source/example/tutorial10-4.log
303
- - vendor/local/share/groonga/doc/ja/source/example/tutorial01-2.log
304
- - vendor/local/share/groonga/doc/ja/source/example/tutorial04-5.log
305
- - vendor/local/share/groonga/doc/ja/source/commands.txt
306
- - vendor/local/share/groonga/doc/ja/source/update_execution_example.py
307
- - vendor/local/share/groonga/doc/ja/source/http.txt
308
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial05.txt
309
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial08.txt
310
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial07.txt
311
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial03.txt
312
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial10.txt
313
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial04.txt
314
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial09.txt
315
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial01.txt
316
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial02.txt
317
- - vendor/local/share/groonga/doc/ja/source/tutorial/tutorial06.txt
318
- - vendor/local/share/groonga/doc/ja/source/news.txt
319
- - vendor/local/share/groonga/doc/ja/source/install.txt
320
- - vendor/local/share/groonga/doc/ja/source/tutorial.txt
321
- - vendor/local/share/groonga/doc/ja/source/functions/edit_distance.txt
322
- - vendor/local/share/groonga/doc/ja/source/functions/now.txt
323
- - vendor/local/share/groonga/doc/ja/source/functions/geo_distance.txt
324
- - vendor/local/share/groonga/doc/ja/source/functions/geo_in_circle.txt
325
- - vendor/local/share/groonga/doc/ja/source/functions/geo_in_rectangle.txt
326
- - vendor/local/share/groonga/doc/ja/source/functions/rand.txt
327
- - vendor/local/share/groonga/doc/ja/source/commands_not_implemented/set.txt
328
- - vendor/local/share/groonga/doc/ja/source/commands_not_implemented/get.txt
329
- - vendor/local/share/groonga/doc/ja/source/commands_not_implemented/add.txt
330
- - vendor/local/share/groonga/doc/ja/source/grnslap.txt
331
- - vendor/local/share/groonga/doc/ja/source/grntest.txt
332
- - vendor/local/share/groonga/doc/ja/source/reference.txt
333
- - vendor/local/share/groonga/doc/ja/source/characteristic.txt
334
- - vendor/local/share/groonga/doc/ja/source/__init__.py
335
- - vendor/local/share/groonga/doc/ja/source/expr.txt
336
- - vendor/local/share/groonga/doc/ja/source/type.txt
337
- - vendor/local/share/groonga/doc/ja/html/process.html
338
- - vendor/local/share/groonga/doc/ja/html/commands/dump.html
339
- - vendor/local/share/groonga/doc/ja/html/commands/defrag.html
340
- - vendor/local/share/groonga/doc/ja/html/commands/column_create.html
341
- - vendor/local/share/groonga/doc/ja/html/commands/view_add.html
342
- - vendor/local/share/groonga/doc/ja/html/commands/clearlock.html
343
- - vendor/local/share/groonga/doc/ja/html/commands/delete.html
344
- - vendor/local/share/groonga/doc/ja/html/commands/log_level.html
345
- - vendor/local/share/groonga/doc/ja/html/commands/shutdown.html
346
- - vendor/local/share/groonga/doc/ja/html/commands/quit.html
347
- - vendor/local/share/groonga/doc/ja/html/commands/cache_limit.html
348
- - vendor/local/share/groonga/doc/ja/html/commands/column_list.html
349
- - vendor/local/share/groonga/doc/ja/html/commands/log_reopen.html
350
- - vendor/local/share/groonga/doc/ja/html/commands/suggest.html
351
- - vendor/local/share/groonga/doc/ja/html/commands/status.html
352
- - vendor/local/share/groonga/doc/ja/html/commands/check.html
353
- - vendor/local/share/groonga/doc/ja/html/commands/log_put.html
354
- - vendor/local/share/groonga/doc/ja/html/commands/select.html
355
- - vendor/local/share/groonga/doc/ja/html/commands/column_remove.html
356
- - vendor/local/share/groonga/doc/ja/html/commands/table_create.html
357
- - vendor/local/share/groonga/doc/ja/html/commands/table_remove.html
358
- - vendor/local/share/groonga/doc/ja/html/commands/load.html
359
- - vendor/local/share/groonga/doc/ja/html/commands/table_list.html
360
- - vendor/local/share/groonga/doc/ja/html/commands/define_selector.html
361
- - vendor/local/share/groonga/doc/ja/html/developer.html
362
- - vendor/local/share/groonga/doc/ja/html/developer/query.html
363
- - vendor/local/share/groonga/doc/ja/html/developer/test.html
364
- - vendor/local/share/groonga/doc/ja/html/developer/com.html
365
- - vendor/local/share/groonga/doc/ja/html/developer/document.html
366
- - vendor/local/share/groonga/doc/ja/html/objects.inv
367
- - vendor/local/share/groonga/doc/ja/html/genindex.html
368
- - vendor/local/share/groonga/doc/ja/html/reference.html
369
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial08.html
370
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial10.html
371
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial04.html
372
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial05.html
373
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial09.html
374
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial03.html
375
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial01.html
376
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial02.html
377
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial07.html
378
- - vendor/local/share/groonga/doc/ja/html/tutorial/tutorial06.html
379
- - vendor/local/share/groonga/doc/ja/html/index.html
380
- - vendor/local/share/groonga/doc/ja/html/expr.html
381
- - vendor/local/share/groonga/doc/ja/html/searchindex.js
382
- - vendor/local/share/groonga/doc/ja/html/news.html
383
- - vendor/local/share/groonga/doc/ja/html/commands.html
384
- - vendor/local/share/groonga/doc/ja/html/type.html
385
- - vendor/local/share/groonga/doc/ja/html/tutorial.html
386
- - vendor/local/share/groonga/doc/ja/html/functions/geo_in_circle.html
387
- - vendor/local/share/groonga/doc/ja/html/functions/geo_distance.html
388
- - vendor/local/share/groonga/doc/ja/html/functions/now.html
389
- - vendor/local/share/groonga/doc/ja/html/functions/rand.html
390
- - vendor/local/share/groonga/doc/ja/html/functions/edit_distance.html
391
- - vendor/local/share/groonga/doc/ja/html/functions/geo_in_rectangle.html
392
- - vendor/local/share/groonga/doc/ja/html/grnslap.html
393
- - vendor/local/share/groonga/doc/ja/html/commands_not_implemented/add.html
394
- - vendor/local/share/groonga/doc/ja/html/commands_not_implemented/set.html
395
- - vendor/local/share/groonga/doc/ja/html/commands_not_implemented/get.html
396
- - vendor/local/share/groonga/doc/ja/html/grntest.html
397
- - vendor/local/share/groonga/doc/ja/html/characteristic.html
398
- - vendor/local/share/groonga/doc/ja/html/http.html
399
- - vendor/local/share/groonga/doc/ja/html/search.html
400
- - vendor/local/share/groonga/doc/ja/html/functions.html
401
- - vendor/local/share/groonga/doc/ja/html/execfile.html
402
- - vendor/local/share/groonga/doc/ja/html/.buildinfo
403
- - vendor/local/share/groonga/doc/ja/html/install.html
404
- - vendor/local/share/groonga/doc/ja/html/pseudo_column.html
405
- - vendor/local/share/groonga/doc/ja/html/_sources/index.txt
406
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/clearlock.txt
407
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/check.txt
408
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/column_remove.txt
409
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/define_selector.txt
410
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/column_list.txt
411
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/shutdown.txt
412
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/table_create.txt
413
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/log_reopen.txt
414
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/quit.txt
415
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/dump.txt
416
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/delete.txt
417
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/table_remove.txt
418
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/table_list.txt
419
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/log_level.txt
420
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/suggest.txt
421
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/cache_limit.txt
422
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/select.txt
423
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/load.txt
424
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/log_put.txt
425
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/defrag.txt
426
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/column_create.txt
427
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/status.txt
428
- - vendor/local/share/groonga/doc/ja/html/_sources/commands/view_add.txt
429
- - vendor/local/share/groonga/doc/ja/html/_sources/developer/com.txt
430
- - vendor/local/share/groonga/doc/ja/html/_sources/developer/document.txt
431
- - vendor/local/share/groonga/doc/ja/html/_sources/developer/query.txt
432
- - vendor/local/share/groonga/doc/ja/html/_sources/developer/test.txt
433
- - vendor/local/share/groonga/doc/ja/html/_sources/pseudo_column.txt
434
- - vendor/local/share/groonga/doc/ja/html/_sources/developer.txt
435
- - vendor/local/share/groonga/doc/ja/html/_sources/process.txt
436
- - vendor/local/share/groonga/doc/ja/html/_sources/functions.txt
437
- - vendor/local/share/groonga/doc/ja/html/_sources/execfile.txt
438
- - vendor/local/share/groonga/doc/ja/html/_sources/commands.txt
439
- - vendor/local/share/groonga/doc/ja/html/_sources/http.txt
440
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial05.txt
441
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial08.txt
442
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial07.txt
443
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial03.txt
444
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial10.txt
445
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial04.txt
446
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial09.txt
447
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial01.txt
448
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial02.txt
449
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial06.txt
450
- - vendor/local/share/groonga/doc/ja/html/_sources/news.txt
451
- - vendor/local/share/groonga/doc/ja/html/_sources/install.txt
452
- - vendor/local/share/groonga/doc/ja/html/_sources/tutorial.txt
453
- - vendor/local/share/groonga/doc/ja/html/_sources/functions/edit_distance.txt
454
- - vendor/local/share/groonga/doc/ja/html/_sources/functions/now.txt
455
- - vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_distance.txt
456
- - vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_circle.txt
457
- - vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_rectangle.txt
458
- - vendor/local/share/groonga/doc/ja/html/_sources/functions/rand.txt
459
- - vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/set.txt
460
- - vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/get.txt
461
- - vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/add.txt
462
- - vendor/local/share/groonga/doc/ja/html/_sources/grnslap.txt
463
- - vendor/local/share/groonga/doc/ja/html/_sources/grntest.txt
464
- - vendor/local/share/groonga/doc/ja/html/_sources/reference.txt
465
- - vendor/local/share/groonga/doc/ja/html/_sources/characteristic.txt
466
- - vendor/local/share/groonga/doc/ja/html/_sources/expr.txt
467
- - vendor/local/share/groonga/doc/ja/html/_sources/type.txt
468
- - vendor/local/share/groonga/doc/ja/html/_static/file.png
469
- - vendor/local/share/groonga/doc/ja/html/_static/basic.css
470
- - vendor/local/share/groonga/doc/ja/html/_static/default.css
471
- - vendor/local/share/groonga/doc/ja/html/_static/doctools.js
472
- - vendor/local/share/groonga/doc/ja/html/_static/underscore.js
473
- - vendor/local/share/groonga/doc/ja/html/_static/sidebar.js
474
- - vendor/local/share/groonga/doc/ja/html/_static/searchtools.js
475
- - vendor/local/share/groonga/doc/ja/html/_static/jquery.js
476
- - vendor/local/share/groonga/doc/ja/html/_static/plus.png
477
- - vendor/local/share/groonga/doc/ja/html/_static/minus.png
478
- - vendor/local/share/groonga/doc/ja/html/_static/pygments.css
234
+ - vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
235
+ - vendor/local/share/groonga/admin_html/js/jquery.json-2.2.min.js
479
236
  - vendor/local/share/groonga/admin_html/js/jquery-ui-1.8.1.custom.min.js
480
237
  - vendor/local/share/groonga/admin_html/js/jquery-1.4.2.min.js
481
- - vendor/local/share/groonga/admin_html/js/jquery.json-2.2.min.js
238
+ - vendor/local/share/groonga/admin_html/index.html
239
+ - vendor/local/share/groonga/admin_html/images/loading.gif
240
+ - vendor/local/share/groonga/admin_html/images/groonga.png
482
241
  - vendor/local/share/groonga/admin_html/css/ui-lightness/jquery-ui-1.8.1.custom.css
483
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
484
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
485
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
486
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_228ef1_256x240.png
487
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
488
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
489
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
490
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
491
242
  - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffffff_256x240.png
492
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
493
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_222222_256x240.png
494
243
  - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
495
- - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
496
244
  - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
245
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_228ef1_256x240.png
246
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_222222_256x240.png
247
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
248
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
249
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
250
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
251
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
252
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
253
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
254
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
255
+ - vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
497
256
  - vendor/local/share/groonga/admin_html/css/admin.css
498
- - vendor/local/share/groonga/admin_html/index.html
499
- - vendor/local/share/groonga/admin_html/images/groonga.png
500
- - vendor/local/share/groonga/admin_html/images/loading.gif
501
- - vendor/local/share/groonga/munin/plugins/groonga_disk
502
- - vendor/local/share/groonga/munin/plugins/groonga_query_performance
503
- - vendor/local/share/groonga/munin/plugins/groonga_cpu_time
504
- - vendor/local/share/groonga/munin/plugins/groonga_cpu_load
505
- - vendor/local/share/groonga/munin/plugins/groonga_n_records
506
- - vendor/local/share/groonga/munin/plugins/groonga_memory
507
- - vendor/local/share/groonga/munin/plugins/groonga_status
508
- - vendor/local/share/man/man1/groonga.1
509
- - vendor/local/bin/groonga.exe
510
- - vendor/local/bin/libgroonga-0.dll
511
- - vendor/local/bin/grntest.exe
257
+ - vendor/local/lib/pkgconfig/groonga.pc
512
258
  - vendor/local/lib/libgroonga.la
513
- - vendor/local/lib/groonga/modules/suggest/suggest.dll
514
- - vendor/local/lib/groonga/modules/suggest/suggest.dll.a
515
- - vendor/local/lib/groonga/modules/suggest/suggest.a
516
- - vendor/local/lib/groonga/modules/suggest/suggest.la
517
- - vendor/local/lib/libgroonga.a
518
259
  - vendor/local/lib/libgroonga.dll.a
519
- - vendor/local/lib/pkgconfig/groonga.pc
520
- - vendor/local/etc/groonga/groonga.conf
260
+ - vendor/local/lib/libgroonga.a
261
+ - vendor/local/lib/groonga/plugins/suggest/suggest.la
262
+ - vendor/local/lib/groonga/plugins/suggest/suggest.dll.a
263
+ - vendor/local/lib/groonga/plugins/suggest/suggest.dll
264
+ - vendor/local/lib/groonga/plugins/suggest/suggest.a
265
+ - vendor/local/include/groonga/groonga.h
266
+ - vendor/local/include/groonga/groonga/plugin.h
521
267
  - vendor/local/etc/groonga/init.d/redhat/sysconfig/groonga
522
268
  - vendor/local/etc/groonga/init.d/redhat/groonga
523
- - vendor/local/include/groonga/groonga.h
269
+ - vendor/local/etc/groonga/groonga.conf
270
+ - vendor/local/bin/libgroonga-0.dll
271
+ - vendor/local/bin/groonga.exe
272
+ - vendor/local/bin/grntest.exe
273
+ - lib/groonga.so
524
274
  has_rdoc: true
525
275
  homepage: http://groonga.rubyforge.org/
526
276
  licenses: []