rroonga 2.0.4-x86-mingw32 → 2.0.7-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (887) hide show
  1. data/Rakefile +29 -2
  2. data/bin/grndump +3 -2
  3. data/ext/groonga/extconf.rb +37 -10
  4. data/ext/groonga/rb-grn-accessor.c +8 -10
  5. data/ext/groonga/rb-grn-array-cursor.c +2 -2
  6. data/ext/groonga/rb-grn-array.c +39 -36
  7. data/ext/groonga/rb-grn-column.c +185 -200
  8. data/ext/groonga/rb-grn-context.c +104 -93
  9. data/ext/groonga/rb-grn-database.c +116 -114
  10. data/ext/groonga/rb-grn-double-array-trie-cursor.c +3 -3
  11. data/ext/groonga/rb-grn-double-array-trie.c +159 -168
  12. data/ext/groonga/rb-grn-encoding-support.c +2 -3
  13. data/ext/groonga/rb-grn-encoding.c +39 -34
  14. data/ext/groonga/rb-grn-exception.c +1 -1
  15. data/ext/groonga/rb-grn-expression.c +141 -159
  16. data/ext/groonga/rb-grn-fix-size-column.c +12 -13
  17. data/ext/groonga/rb-grn-geo-point.c +55 -0
  18. data/ext/groonga/rb-grn-hash-cursor.c +3 -3
  19. data/ext/groonga/rb-grn-hash.c +73 -86
  20. data/ext/groonga/rb-grn-index-column.c +80 -90
  21. data/ext/groonga/rb-grn-index-cursor.c +48 -15
  22. data/ext/groonga/rb-grn-logger.c +42 -63
  23. data/ext/groonga/rb-grn-object.c +73 -100
  24. data/ext/groonga/rb-grn-operator.c +1 -1
  25. data/ext/groonga/rb-grn-patricia-trie-cursor.c +2 -2
  26. data/ext/groonga/rb-grn-patricia-trie.c +200 -260
  27. data/ext/groonga/rb-grn-plugin.c +17 -24
  28. data/ext/groonga/rb-grn-posting.c +6 -1
  29. data/ext/groonga/rb-grn-snippet.c +37 -54
  30. data/ext/groonga/rb-grn-table-cursor-key-support.c +3 -3
  31. data/ext/groonga/rb-grn-table-cursor.c +21 -26
  32. data/ext/groonga/rb-grn-table-key-support.c +53 -63
  33. data/ext/groonga/rb-grn-table.c +366 -393
  34. data/ext/groonga/rb-grn-type.c +122 -26
  35. data/ext/groonga/rb-grn-utils.c +77 -7
  36. data/ext/groonga/rb-grn-variable-size-column.c +12 -20
  37. data/ext/groonga/rb-grn-variable.c +6 -7
  38. data/ext/groonga/rb-grn-view-accessor.c +1 -1
  39. data/ext/groonga/rb-grn-view-cursor.c +2 -2
  40. data/ext/groonga/rb-grn-view.c +46 -58
  41. data/ext/groonga/rb-grn.h +36 -4
  42. data/ext/groonga/rb-groonga.c +7 -6
  43. data/lib/1.8/groonga.so +0 -0
  44. data/lib/1.9/groonga.so +0 -0
  45. data/lib/groonga/command.rb +3 -1
  46. data/lib/groonga/database.rb +27 -0
  47. data/lib/groonga/dumper.rb +201 -46
  48. data/lib/groonga/expression-builder.rb +24 -0
  49. data/lib/groonga/geo-point.rb +216 -0
  50. data/lib/groonga/pagination.rb +30 -24
  51. data/lib/groonga/posting.rb +29 -1
  52. data/lib/groonga/record.rb +21 -18
  53. data/lib/groonga/schema.rb +185 -186
  54. data/lib/groonga.rb +3 -1
  55. data/rroonga-build.rb +1 -1
  56. data/rroonga.gemspec +90 -0
  57. data/test/groonga-test-utils.rb +168 -0
  58. data/test/run-test.rb +60 -0
  59. data/test/test-accessor.rb +36 -0
  60. data/test/test-array.rb +146 -0
  61. data/test/test-column.rb +350 -0
  62. data/test/test-command-select.rb +246 -0
  63. data/test/test-context.rb +130 -0
  64. data/test/test-database-dumper.rb +299 -0
  65. data/test/test-database.rb +173 -0
  66. data/test/test-double-array-trie.rb +189 -0
  67. data/test/test-encoding.rb +33 -0
  68. data/test/test-exception.rb +230 -0
  69. data/test/test-expression-builder.rb +643 -0
  70. data/test/test-expression.rb +134 -0
  71. data/test/test-fix-size-column.rb +77 -0
  72. data/test/test-geo-point.rb +190 -0
  73. data/test/test-gqtp.rb +70 -0
  74. data/test/test-hash.rb +367 -0
  75. data/test/test-index-column.rb +180 -0
  76. data/test/test-index-cursor.rb +149 -0
  77. data/test/test-logger.rb +37 -0
  78. data/test/test-pagination.rb +249 -0
  79. data/test/test-patricia-trie.rb +440 -0
  80. data/test/test-plugin.rb +35 -0
  81. data/test/test-procedure.rb +37 -0
  82. data/test/test-record.rb +577 -0
  83. data/test/test-remote.rb +63 -0
  84. data/test/test-schema-create-table.rb +267 -0
  85. data/test/test-schema-dumper.rb +235 -0
  86. data/test/test-schema-type.rb +208 -0
  87. data/test/test-schema-view.rb +90 -0
  88. data/test/test-schema.rb +886 -0
  89. data/test/test-snippet.rb +130 -0
  90. data/test/test-table-dumper.rb +353 -0
  91. data/test/test-table-offset-and-limit.rb +100 -0
  92. data/test/test-table-select-mecab.rb +80 -0
  93. data/test/test-table-select-normalize.rb +57 -0
  94. data/test/test-table-select-weight.rb +123 -0
  95. data/test/test-table-select.rb +191 -0
  96. data/test/test-table-traverse.rb +304 -0
  97. data/test/test-table.rb +711 -0
  98. data/test/test-type.rb +136 -0
  99. data/test/test-variable-size-column.rb +147 -0
  100. data/test/test-variable.rb +28 -0
  101. data/test/test-vector-column.rb +76 -0
  102. data/test/test-version.rb +61 -0
  103. data/test/test-view.rb +72 -0
  104. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  105. data/vendor/local/bin/groonga.exe +0 -0
  106. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  107. data/vendor/local/bin/libgroonga-0.dll +0 -0
  108. data/vendor/local/bin/libmecab-1.dll +0 -0
  109. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  110. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  111. data/vendor/local/bin/libstdc++-6.dll +0 -0
  112. data/vendor/local/bin/mecab-config +2 -2
  113. data/vendor/local/bin/mecab.exe +0 -0
  114. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +49 -0
  115. data/vendor/local/include/groonga/groonga/plugin.h +1 -1
  116. data/vendor/local/include/groonga/groonga.h +83 -7
  117. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  118. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  119. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  120. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +3 -3
  121. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  122. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  123. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  124. data/vendor/local/lib/groonga/plugins/table/table.la +41 -0
  125. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  126. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  127. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  128. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
  129. data/vendor/local/lib/libgroonga.a +0 -0
  130. data/vendor/local/lib/libgroonga.dll.a +0 -0
  131. data/vendor/local/lib/libgroonga.la +3 -3
  132. data/vendor/local/lib/libmecab.a +0 -0
  133. data/vendor/local/lib/libmecab.dll.a +0 -0
  134. data/vendor/local/lib/libmecab.la +1 -1
  135. data/vendor/local/lib/libmsgpack.a +0 -0
  136. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  137. data/vendor/local/lib/libmsgpack.la +2 -2
  138. data/vendor/local/lib/libmsgpackc.a +0 -0
  139. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  140. data/vendor/local/lib/libmsgpackc.la +2 -2
  141. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  142. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  143. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  144. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  145. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  146. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  147. data/vendor/local/sbin/groonga-httpd-restart +64 -0
  148. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  149. data/vendor/local/share/doc/groonga/en/html/_sources/community.txt +17 -0
  150. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +638 -0
  151. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt +21 -6
  152. data/vendor/local/share/doc/groonga/en/html/_sources/contribution.txt +0 -1
  153. data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +61 -0
  154. data/vendor/local/share/doc/groonga/en/html/_sources/development.txt +15 -0
  155. data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +2 -0
  156. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +131 -0
  157. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +136 -0
  158. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +72 -0
  159. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +53 -0
  160. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +267 -0
  161. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +43 -0
  162. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +196 -0
  163. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +77 -0
  164. data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +21 -346
  165. data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +3 -3
  166. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +16 -16
  167. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
  168. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +17 -17
  169. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +235 -4
  170. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt +8 -0
  171. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +8 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt +8 -0
  173. data/vendor/local/share/doc/groonga/en/html/_sources/{command_version.txt → reference/command_version.txt} +0 -0
  174. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/cache_limit.txt +0 -0
  175. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/check.txt +0 -0
  176. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/clearlock.txt +0 -0
  177. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_create.txt +0 -0
  178. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_list.txt +0 -0
  179. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_remove.txt +0 -0
  180. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/define_selector.txt +1 -1
  181. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/defrag.txt +0 -0
  182. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/delete.txt +0 -0
  183. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/dump.txt +0 -0
  184. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/load.txt +1 -1
  185. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_level.txt +0 -0
  186. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_put.txt +0 -0
  187. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_reopen.txt +0 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/quit.txt +0 -0
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +892 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/shutdown.txt +0 -0
  191. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/status.txt +5 -6
  192. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/suggest.txt +8 -8
  193. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_create.txt +0 -0
  194. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_list.txt +3 -26
  195. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_remove.txt +3 -3
  196. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/view_add.txt +0 -0
  197. data/vendor/local/share/doc/groonga/en/html/_sources/{commands.txt → reference/commands.txt} +0 -0
  198. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/add.txt +0 -0
  199. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/get.txt +0 -0
  200. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/set.txt +0 -0
  201. data/vendor/local/share/doc/groonga/en/html/_sources/{executables → reference/executables}/grnslap.txt +0 -0
  202. data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/executables/grntest.txt +1 -1
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +209 -0
  204. data/vendor/local/share/doc/groonga/{ja/html/_sources/executables/groonga-http.txt → en/html/_sources/reference/executables/groonga-server-http.txt} +3 -3
  205. data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/executables/groonga-suggest-create-dataset.txt +1 -1
  206. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/executables/groonga.txt +4 -4
  207. data/vendor/local/share/doc/groonga/en/html/_sources/{executables.txt → reference/executables.txt} +0 -0
  208. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/edit_distance.txt +0 -0
  209. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +284 -0
  210. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/geo_in_circle.txt +0 -0
  211. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
  212. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/now.txt +0 -0
  213. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/rand.txt +0 -0
  214. data/vendor/local/share/doc/groonga/en/html/_sources/{functions.txt → reference/functions.txt} +0 -0
  215. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +584 -0
  216. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +805 -0
  217. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +59 -0
  218. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/indexing.txt +7 -7
  219. data/vendor/local/share/doc/groonga/en/html/_sources/{log.txt → reference/log.txt} +0 -0
  220. data/vendor/local/share/doc/groonga/en/html/_sources/{output.txt → reference/output.txt} +0 -0
  221. data/vendor/local/share/doc/groonga/en/html/_sources/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
  222. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +8 -0
  223. data/vendor/local/share/doc/groonga/en/html/_sources/{type.txt → reference/type.txt} +4 -4
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +12 -9
  225. data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +16 -0
  226. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +288 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt +8 -0
  228. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt +8 -0
  229. data/vendor/local/share/doc/groonga/en/html/_sources/server/http.txt +29 -0
  230. data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +12 -0
  231. data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
  232. data/vendor/local/share/doc/groonga/en/html/_sources/spec.txt +2 -2
  233. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt +1 -1
  234. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt +2 -2
  235. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt +2 -0
  236. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt +1 -1
  237. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  238. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +11 -11
  239. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +23 -23
  240. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +3 -1
  241. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +1 -1
  242. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +8 -6
  243. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
  244. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +3 -3
  245. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -154
  246. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +29 -21
  247. data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
  248. data/vendor/local/share/doc/groonga/en/html/community.html +25 -10
  249. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +22 -22
  250. data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +30 -30
  251. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +67 -67
  252. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +742 -0
  253. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +47 -47
  254. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +23 -22
  255. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +19 -19
  256. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +38 -38
  257. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +19 -19
  258. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +46 -21
  259. data/vendor/local/share/doc/groonga/en/html/contribution.html +85 -50
  260. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +191 -0
  261. data/vendor/local/share/doc/groonga/en/html/{executables.html → development.html} +27 -28
  262. data/vendor/local/share/doc/groonga/en/html/genindex.html +61 -61
  263. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +10 -10
  264. data/vendor/local/share/doc/groonga/en/html/index.html +167 -108
  265. data/vendor/local/share/doc/groonga/en/html/install/centos.html +251 -0
  266. data/vendor/local/share/doc/groonga/en/html/install/debian.html +260 -0
  267. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +202 -0
  268. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +186 -0
  269. data/vendor/local/share/doc/groonga/en/html/install/others.html +394 -0
  270. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +171 -0
  271. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +321 -0
  272. data/vendor/local/share/doc/groonga/en/html/install/windows.html +200 -0
  273. data/vendor/local/share/doc/groonga/en/html/install.html +91 -349
  274. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -17
  275. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +8 -8
  276. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -21
  277. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
  278. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +23 -23
  279. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  280. data/vendor/local/share/doc/groonga/en/html/news.html +301 -37
  281. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +111 -0
  283. data/vendor/local/share/doc/groonga/en/html/reference/api.html +134 -0
  284. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +111 -0
  285. data/vendor/local/share/doc/groonga/en/html/{command_version.html → reference/command_version.html} +44 -44
  286. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/cache_limit.html +48 -48
  287. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/check.html +48 -48
  288. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/clearlock.html +48 -48
  289. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_create.html +48 -48
  290. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_list.html +48 -48
  291. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_remove.html +48 -48
  292. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/define_selector.html +51 -51
  293. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/defrag.html +48 -48
  294. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/delete.html +48 -48
  295. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/dump.html +46 -46
  296. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/load.html +51 -51
  297. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_level.html +50 -50
  298. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_put.html +50 -50
  299. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_reopen.html +52 -52
  300. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/quit.html +46 -46
  301. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +2340 -0
  302. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/shutdown.html +46 -46
  303. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/status.html +67 -51
  304. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/suggest.html +246 -246
  305. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_create.html +48 -48
  306. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_list.html +140 -72
  307. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_remove.html +51 -51
  308. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/view_add.html +48 -48
  309. data/vendor/local/share/doc/groonga/en/html/{commands.html → reference/commands.html} +55 -55
  310. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +201 -0
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +182 -0
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +203 -0
  313. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/grnslap.html +46 -46
  314. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/grntest.html +62 -62
  315. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +367 -0
  316. data/vendor/local/share/doc/groonga/en/html/{executables/groonga-http.html → reference/executables/groonga-server-http.html} +46 -46
  317. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/groonga-suggest-create-dataset.html +53 -53
  318. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/groonga.html +54 -54
  319. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +144 -0
  320. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/edit_distance.html +46 -46
  321. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +551 -0
  322. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/geo_in_circle.html +46 -46
  323. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/geo_in_rectangle.html +46 -46
  324. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/now.html +44 -44
  325. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/rand.html +46 -46
  326. data/vendor/local/share/doc/groonga/en/html/reference/functions.html +143 -0
  327. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +1365 -0
  328. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +1977 -0
  329. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +192 -0
  330. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +318 -0
  331. data/vendor/local/share/doc/groonga/en/html/{log.html → reference/log.html} +42 -42
  332. data/vendor/local/share/doc/groonga/en/html/{output.html → reference/output.html} +39 -39
  333. data/vendor/local/share/doc/groonga/en/html/{pseudo_column.html → reference/pseudo_column.html} +38 -38
  334. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +134 -0
  335. data/vendor/local/share/doc/groonga/en/html/{type.html → reference/type.html} +45 -45
  336. data/vendor/local/share/doc/groonga/en/html/reference.html +84 -76
  337. data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
  338. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  339. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +135 -0
  340. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +452 -0
  341. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +136 -0
  342. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +136 -0
  343. data/vendor/local/share/doc/groonga/en/html/server/http.html +168 -0
  344. data/vendor/local/share/doc/groonga/en/html/{functions.html → server.html} +26 -28
  345. data/vendor/local/share/doc/groonga/en/html/spec/search.html +30 -30
  346. data/vendor/local/share/doc/groonga/en/html/spec.html +18 -20
  347. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +35 -35
  348. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +36 -36
  349. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +13 -11
  350. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +39 -39
  351. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  352. data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
  353. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +28 -28
  354. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -19
  355. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +340 -340
  356. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +452 -36
  357. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +382 -382
  358. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +755 -79
  359. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
  360. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +311 -311
  361. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +561 -535
  362. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +107 -107
  363. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +145 -143
  364. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +176 -176
  365. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +415 -34
  366. data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
  367. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  368. data/vendor/local/share/doc/groonga/ja/html/_sources/community.txt +17 -0
  369. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +638 -0
  370. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt +21 -6
  371. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt +0 -1
  372. data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +61 -0
  373. data/vendor/local/share/doc/groonga/ja/html/_sources/development.txt +15 -0
  374. data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +2 -0
  375. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +131 -0
  376. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +136 -0
  377. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +72 -0
  378. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +53 -0
  379. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +267 -0
  380. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +43 -0
  381. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +196 -0
  382. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +77 -0
  383. data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +21 -346
  384. data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +3 -3
  385. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +16 -16
  386. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
  387. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +17 -17
  388. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +235 -4
  389. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt +8 -0
  390. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +8 -0
  391. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt +8 -0
  392. data/vendor/local/share/doc/groonga/ja/html/_sources/{command_version.txt → reference/command_version.txt} +0 -0
  393. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/cache_limit.txt +0 -0
  394. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/check.txt +0 -0
  395. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/clearlock.txt +0 -0
  396. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_create.txt +0 -0
  397. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_list.txt +0 -0
  398. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_remove.txt +0 -0
  399. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/commands/define_selector.txt +1 -1
  400. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/defrag.txt +0 -0
  401. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/delete.txt +0 -0
  402. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/dump.txt +0 -0
  403. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/load.txt +1 -1
  404. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_level.txt +0 -0
  405. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_put.txt +0 -0
  406. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_reopen.txt +0 -0
  407. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/quit.txt +0 -0
  408. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +892 -0
  409. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/shutdown.txt +0 -0
  410. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/status.txt +5 -6
  411. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/suggest.txt +8 -8
  412. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/table_create.txt +0 -0
  413. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/table_list.txt +3 -26
  414. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/table_remove.txt +3 -3
  415. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/view_add.txt +0 -0
  416. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands.txt → reference/commands.txt} +0 -0
  417. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/add.txt +104 -0
  418. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/get.txt +80 -0
  419. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/set.txt +105 -0
  420. data/vendor/local/share/doc/groonga/ja/html/_sources/{executables → reference/executables}/grnslap.txt +0 -0
  421. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/grntest.txt +1 -1
  422. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +209 -0
  423. data/vendor/local/share/doc/groonga/{source/executables/groonga-http.txt → ja/html/_sources/reference/executables/groonga-server-http.txt} +3 -3
  424. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/groonga-suggest-create-dataset.txt +1 -1
  425. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/groonga.txt +4 -4
  426. data/vendor/local/share/doc/groonga/ja/html/_sources/{executables.txt → reference/executables.txt} +0 -0
  427. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/edit_distance.txt +0 -0
  428. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +284 -0
  429. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/geo_in_circle.txt +0 -0
  430. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
  431. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/now.txt +0 -0
  432. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/rand.txt +0 -0
  433. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions.txt → reference/functions.txt} +0 -0
  434. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +584 -0
  435. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +805 -0
  436. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +59 -0
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/{indexing.txt → reference/indexing.txt} +7 -7
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/{log.txt → reference/log.txt} +0 -0
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/{output.txt → reference/output.txt} +0 -0
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +8 -0
  442. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/type.txt +4 -4
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +12 -9
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +16 -0
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +288 -0
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt +8 -0
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt +8 -0
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt +29 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +12 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/spec.txt +2 -2
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt +1 -1
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt +2 -2
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt +2 -0
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt +1 -1
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +11 -11
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +23 -23
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +3 -1
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +1 -1
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +8 -6
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +3 -3
  464. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -154
  465. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +29 -21
  466. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
  467. data/vendor/local/share/doc/groonga/ja/html/community.html +22 -10
  468. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +22 -22
  469. data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +30 -30
  470. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +67 -67
  471. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +743 -0
  472. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +47 -47
  473. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +23 -22
  474. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +19 -19
  475. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +38 -38
  476. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +19 -19
  477. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +41 -17
  478. data/vendor/local/share/doc/groonga/ja/html/contribution.html +85 -50
  479. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +180 -0
  480. data/vendor/local/share/doc/groonga/ja/html/{executables.html → development.html} +25 -28
  481. data/vendor/local/share/doc/groonga/ja/html/genindex.html +61 -61
  482. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +10 -10
  483. data/vendor/local/share/doc/groonga/ja/html/index.html +167 -108
  484. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +236 -0
  485. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +250 -0
  486. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +190 -0
  487. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +182 -0
  488. data/vendor/local/share/doc/groonga/ja/html/install/others.html +348 -0
  489. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +168 -0
  490. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +309 -0
  491. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +186 -0
  492. data/vendor/local/share/doc/groonga/ja/html/install.html +83 -340
  493. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -17
  494. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +8 -8
  495. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -21
  496. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
  497. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +23 -23
  498. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  499. data/vendor/local/share/doc/groonga/ja/html/news.html +273 -40
  500. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  501. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +112 -0
  502. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +135 -0
  503. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +112 -0
  504. data/vendor/local/share/doc/groonga/ja/html/{command_version.html → reference/command_version.html} +45 -45
  505. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/cache_limit.html +49 -49
  506. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/check.html +49 -49
  507. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/clearlock.html +49 -49
  508. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_create.html +49 -49
  509. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_list.html +49 -49
  510. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_remove.html +49 -49
  511. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/define_selector.html +52 -52
  512. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/defrag.html +49 -49
  513. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/delete.html +49 -49
  514. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/dump.html +47 -47
  515. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/load.html +52 -52
  516. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_level.html +51 -51
  517. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_put.html +51 -51
  518. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_reopen.html +53 -53
  519. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/quit.html +47 -47
  520. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2134 -0
  521. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/shutdown.html +47 -47
  522. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/status.html +68 -52
  523. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/suggest.html +254 -254
  524. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_create.html +49 -49
  525. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_list.html +141 -73
  526. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_remove.html +52 -52
  527. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/view_add.html +49 -49
  528. data/vendor/local/share/doc/groonga/ja/html/{commands.html → reference/commands.html} +56 -56
  529. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +202 -0
  530. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +183 -0
  531. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +204 -0
  532. data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/grnslap.html +47 -47
  533. data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/grntest.html +63 -63
  534. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +339 -0
  535. data/vendor/local/share/doc/groonga/ja/html/{executables/groonga-http.html → reference/executables/groonga-server-http.html} +47 -47
  536. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +187 -0
  537. data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/groonga.html +55 -55
  538. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +145 -0
  539. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/edit_distance.html +47 -47
  540. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +510 -0
  541. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/geo_in_circle.html +47 -47
  542. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/geo_in_rectangle.html +47 -47
  543. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/now.html +45 -45
  544. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/rand.html +47 -47
  545. data/vendor/local/share/doc/groonga/ja/html/reference/functions.html +144 -0
  546. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +1210 -0
  547. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +1819 -0
  548. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +169 -0
  549. data/vendor/local/share/doc/groonga/ja/html/{indexing.html → reference/indexing.html} +147 -147
  550. data/vendor/local/share/doc/groonga/ja/html/{log.html → reference/log.html} +55 -55
  551. data/vendor/local/share/doc/groonga/ja/html/{output.html → reference/output.html} +40 -40
  552. data/vendor/local/share/doc/groonga/ja/html/{pseudo_column.html → reference/pseudo_column.html} +39 -39
  553. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +135 -0
  554. data/vendor/local/share/doc/groonga/ja/html/{type.html → reference/type.html} +48 -48
  555. data/vendor/local/share/doc/groonga/ja/html/reference.html +84 -76
  556. data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
  557. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  558. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +136 -0
  559. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +406 -0
  560. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +137 -0
  561. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +137 -0
  562. data/vendor/local/share/doc/groonga/ja/html/server/http.html +166 -0
  563. data/vendor/local/share/doc/groonga/ja/html/{functions.html → server.html} +26 -28
  564. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +30 -30
  565. data/vendor/local/share/doc/groonga/ja/html/spec.html +18 -20
  566. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +35 -35
  567. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +36 -36
  568. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +15 -13
  569. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +39 -39
  570. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  571. data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
  572. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +28 -28
  573. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -19
  574. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +339 -339
  575. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +452 -36
  576. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +382 -382
  577. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +756 -80
  578. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
  579. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +311 -311
  580. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +561 -535
  581. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +108 -108
  582. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +145 -143
  583. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +176 -176
  584. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +415 -34
  585. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
  586. data/vendor/local/share/doc/groonga/source/community.txt +17 -0
  587. data/vendor/local/share/doc/groonga/source/conf.py +3 -16
  588. data/vendor/local/share/doc/groonga/source/contribution/development/release.txt +638 -0
  589. data/vendor/local/share/doc/groonga/source/contribution/report.txt +21 -6
  590. data/vendor/local/share/doc/groonga/source/contribution.txt +0 -1
  591. data/vendor/local/share/doc/groonga/source/development/travis-ci.txt +61 -0
  592. data/vendor/local/share/doc/groonga/source/development.txt +15 -0
  593. data/vendor/local/share/doc/groonga/source/example/completion-1.log +29 -30
  594. data/vendor/local/share/doc/groonga/source/example/correction-1.log +29 -30
  595. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log +41 -0
  596. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log +59 -0
  597. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log +65 -0
  598. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log +32 -0
  599. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log +35 -0
  600. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log +31 -0
  601. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log +35 -0
  602. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log +74 -0
  603. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log +35 -0
  604. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log +29 -0
  605. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log +29 -0
  606. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log +36 -0
  607. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log +31 -0
  608. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log +41 -0
  609. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log +41 -0
  610. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log +41 -0
  611. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log +52 -0
  612. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log +131 -0
  613. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log +12 -0
  614. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log +41 -0
  615. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log +59 -0
  616. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log +90 -0
  617. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log +41 -0
  618. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log +59 -0
  619. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log +47 -0
  620. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log +41 -0
  621. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log +47 -0
  622. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log +65 -0
  623. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log +65 -0
  624. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log +35 -0
  625. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log +65 -0
  626. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log +18 -0
  627. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log +33 -0
  628. data/vendor/local/share/doc/groonga/source/example/reference/commands/status.log +21 -0
  629. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log +31 -0
  630. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log +31 -0
  631. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log +12 -0
  632. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log +14 -0
  633. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log +8 -0
  634. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log +77 -0
  635. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log +35 -0
  636. data/vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log +94 -0
  637. data/vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log +21 -0
  638. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log +16 -0
  639. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log +26 -0
  640. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log +15 -0
  641. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log +26 -0
  642. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log +26 -0
  643. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log +26 -0
  644. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log +13 -0
  645. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log +16 -0
  646. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log +33 -0
  647. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log +41 -0
  648. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log +47 -0
  649. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log +47 -0
  650. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log +41 -0
  651. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log +47 -0
  652. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log +92 -0
  653. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log +53 -0
  654. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log +59 -0
  655. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log +41 -0
  656. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log +41 -0
  657. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log +47 -0
  658. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log +59 -0
  659. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log +41 -0
  660. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log +41 -0
  661. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log +47 -0
  662. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log +51 -0
  663. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log +41 -0
  664. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log +59 -0
  665. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log +41 -0
  666. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log +41 -0
  667. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log +41 -0
  668. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log +53 -0
  669. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log +47 -0
  670. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log +41 -0
  671. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log +41 -0
  672. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log +47 -0
  673. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log +92 -0
  674. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log +41 -0
  675. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log +47 -0
  676. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log +41 -0
  677. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log +59 -0
  678. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log +47 -0
  679. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log +29 -0
  680. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log +41 -0
  681. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log +52 -0
  682. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log +59 -0
  683. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log +29 -0
  684. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log +35 -0
  685. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log +41 -0
  686. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log +29 -0
  687. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log +41 -0
  688. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log +51 -0
  689. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log +39 -0
  690. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log +41 -0
  691. data/vendor/local/share/doc/groonga/source/example/reference/indexing-data.log +9 -0
  692. data/vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log +4 -0
  693. data/vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log +8 -0
  694. data/vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log +8 -0
  695. data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log +31 -0
  696. data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log +35 -0
  697. data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log +27 -0
  698. data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +33 -34
  699. data/vendor/local/share/doc/groonga/source/example/tutorial/data-1.log +2 -3
  700. data/vendor/local/share/doc/groonga/source/example/tutorial/data-2.log +44 -45
  701. data/vendor/local/share/doc/groonga/source/example/tutorial/data-3.log +53 -54
  702. data/vendor/local/share/doc/groonga/source/example/tutorial/data-4.log +43 -44
  703. data/vendor/local/share/doc/groonga/source/example/tutorial/data-5.log +43 -44
  704. data/vendor/local/share/doc/groonga/source/example/tutorial/data-6.log +43 -44
  705. data/vendor/local/share/doc/groonga/source/example/tutorial/data-7.log +44 -45
  706. data/vendor/local/share/doc/groonga/source/example/tutorial/data-8.log +52 -53
  707. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log +21 -22
  708. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +76 -3
  709. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log +83 -3
  710. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +111 -3
  711. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log +84 -3
  712. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log +72 -3
  713. data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +22 -23
  714. data/vendor/local/share/doc/groonga/source/example/tutorial/index-2.log +103 -104
  715. data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +18 -19
  716. data/vendor/local/share/doc/groonga/source/example/tutorial/index-4.log +82 -83
  717. data/vendor/local/share/doc/groonga/source/example/tutorial/index-5.log +76 -77
  718. data/vendor/local/share/doc/groonga/source/example/tutorial/index-6.log +37 -38
  719. data/vendor/local/share/doc/groonga/source/example/tutorial/index-7.log +39 -40
  720. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +0 -1
  721. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +2 -3
  722. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log +2 -3
  723. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log +34 -3
  724. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +34 -3
  725. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +74 -3
  726. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +127 -7
  727. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +74 -3
  728. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log +74 -3
  729. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log +74 -3
  730. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +19 -3
  731. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +2 -3
  732. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +25 -3
  733. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log +31 -5
  734. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log +13 -14
  735. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log +74 -3
  736. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log +34 -3
  737. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +34 -3
  738. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log +19 -20
  739. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log +135 -136
  740. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log +17 -18
  741. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log +135 -136
  742. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log +57 -34
  743. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log +96 -97
  744. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log +33 -34
  745. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log +33 -34
  746. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log +87 -88
  747. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log +33 -34
  748. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +71 -72
  749. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log +52 -53
  750. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log +56 -57
  751. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log +35 -36
  752. data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +19 -20
  753. data/vendor/local/share/doc/groonga/source/example/tutorial/network-2.log +0 -1
  754. data/vendor/local/share/doc/groonga/source/example/tutorial/network-3.log +82 -83
  755. data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log +41 -41
  756. data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log +98 -98
  757. data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +24 -25
  758. data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +68 -69
  759. data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +78 -79
  760. data/vendor/local/share/doc/groonga/source/example/tutorial/search-1.log +29 -3
  761. data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +82 -5
  762. data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +148 -5
  763. data/vendor/local/share/doc/groonga/source/example/tutorial/search-4.log +41 -11
  764. data/vendor/local/share/doc/groonga/source/example/tutorial/search-5.log +39 -3
  765. data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +39 -3
  766. data/vendor/local/share/doc/groonga/source/example/tutorial/search-7.log +29 -3
  767. data/vendor/local/share/doc/groonga/source/index.txt +2 -0
  768. data/vendor/local/share/doc/groonga/source/install/centos.txt +131 -0
  769. data/vendor/local/share/doc/groonga/source/install/debian.txt +136 -0
  770. data/vendor/local/share/doc/groonga/source/install/fedora.txt +72 -0
  771. data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +53 -0
  772. data/vendor/local/share/doc/groonga/source/install/others.txt +267 -0
  773. data/vendor/local/share/doc/groonga/source/install/solaris.txt +43 -0
  774. data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +196 -0
  775. data/vendor/local/share/doc/groonga/source/install/windows.txt +77 -0
  776. data/vendor/local/share/doc/groonga/source/install.txt +21 -346
  777. data/vendor/local/share/doc/groonga/source/news/0.x.txt +3 -3
  778. data/vendor/local/share/doc/groonga/source/news/1.0.x.txt +16 -16
  779. data/vendor/local/share/doc/groonga/source/news/1.1.x.txt +1 -1
  780. data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +17 -17
  781. data/vendor/local/share/doc/groonga/source/news.txt +235 -4
  782. data/vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt +8 -0
  783. data/vendor/local/share/doc/groonga/source/reference/api.txt +8 -0
  784. data/vendor/local/share/doc/groonga/source/reference/cast.txt +8 -0
  785. data/vendor/local/share/doc/groonga/source/{command_version.txt → reference/command_version.txt} +0 -0
  786. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/cache_limit.txt +0 -0
  787. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/check.txt +0 -0
  788. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/clearlock.txt +0 -0
  789. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_create.txt +0 -0
  790. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_list.txt +0 -0
  791. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_remove.txt +0 -0
  792. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/define_selector.txt +1 -1
  793. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/defrag.txt +0 -0
  794. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/delete.txt +0 -0
  795. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/dump.txt +0 -0
  796. data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/commands/load.txt +1 -1
  797. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_level.txt +0 -0
  798. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_put.txt +0 -0
  799. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_reopen.txt +0 -0
  800. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/quit.txt +0 -0
  801. data/vendor/local/share/doc/groonga/source/reference/commands/select.txt +892 -0
  802. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/shutdown.txt +0 -0
  803. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/status.txt +5 -6
  804. data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/commands/suggest.txt +8 -8
  805. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/table_create.txt +0 -0
  806. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/table_list.txt +3 -26
  807. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/table_remove.txt +3 -3
  808. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/view_add.txt +0 -0
  809. data/vendor/local/share/doc/groonga/source/{commands.txt → reference/commands.txt} +0 -0
  810. data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt +104 -0
  811. data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt +80 -0
  812. data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt +105 -0
  813. data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/grnslap.txt +0 -0
  814. data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/grntest.txt +1 -1
  815. data/vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt +209 -0
  816. data/vendor/local/share/doc/groonga/{en/html/_sources/executables/groonga-http.txt → source/reference/executables/groonga-server-http.txt} +3 -3
  817. data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/groonga-suggest-create-dataset.txt +1 -1
  818. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/executables/groonga.txt +4 -4
  819. data/vendor/local/share/doc/groonga/source/{executables.txt → reference/executables.txt} +0 -0
  820. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/edit_distance.txt +0 -0
  821. data/vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt +284 -0
  822. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/geo_in_circle.txt +0 -0
  823. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
  824. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/now.txt +0 -0
  825. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/rand.txt +0 -0
  826. data/vendor/local/share/doc/groonga/source/{functions.txt → reference/functions.txt} +0 -0
  827. data/vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt +584 -0
  828. data/vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt +805 -0
  829. data/vendor/local/share/doc/groonga/source/reference/grn_expr.txt +59 -0
  830. data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/indexing.txt +7 -7
  831. data/vendor/local/share/doc/groonga/source/{log.txt → reference/log.txt} +0 -0
  832. data/vendor/local/share/doc/groonga/source/{output.txt → reference/output.txt} +0 -0
  833. data/vendor/local/share/doc/groonga/source/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
  834. data/vendor/local/share/doc/groonga/source/reference/tokenizers.txt +8 -0
  835. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/type.txt +4 -4
  836. data/vendor/local/share/doc/groonga/source/reference.txt +12 -9
  837. data/vendor/local/share/doc/groonga/source/server/gqtp.txt +16 -0
  838. data/vendor/local/share/doc/groonga/source/server/http/comparison.txt +288 -0
  839. data/vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt +8 -0
  840. data/vendor/local/share/doc/groonga/source/server/http/groonga.txt +8 -0
  841. data/vendor/local/share/doc/groonga/source/server/http.txt +29 -0
  842. data/vendor/local/share/doc/groonga/source/server.txt +12 -0
  843. data/vendor/local/share/doc/groonga/source/spec/search.txt +1 -1
  844. data/vendor/local/share/doc/groonga/source/spec.txt +2 -2
  845. data/vendor/local/share/doc/groonga/source/suggest/completion.txt +1 -1
  846. data/vendor/local/share/doc/groonga/source/suggest/correction.txt +2 -2
  847. data/vendor/local/share/doc/groonga/source/suggest/introduction.txt +2 -0
  848. data/vendor/local/share/doc/groonga/source/suggest/suggestion.txt +1 -1
  849. data/vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  850. data/vendor/local/share/doc/groonga/source/tutorial/data.txt +11 -11
  851. data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +23 -23
  852. data/vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt +3 -1
  853. data/vendor/local/share/doc/groonga/source/tutorial/network.txt +1 -1
  854. data/vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt +8 -6
  855. data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +1 -1
  856. data/vendor/local/share/doc/groonga/source/tutorial/search.txt +3 -3
  857. data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +10 -5
  858. data/vendor/local/share/man/ja/man1/groonga.1 +12354 -3896
  859. data/vendor/local/share/man/man1/groonga.1 +16934 -7750
  860. data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
  861. data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
  862. metadata +1251 -905
  863. data/lib/groonga/query-log.rb +0 -348
  864. data/vendor/local/share/doc/groonga/en/html/_sources/commands/select.txt +0 -504
  865. data/vendor/local/share/doc/groonga/en/html/_sources/expr.txt +0 -45
  866. data/vendor/local/share/doc/groonga/en/html/_sources/functions/geo_distance.txt +0 -92
  867. data/vendor/local/share/doc/groonga/en/html/commands/select.html +0 -891
  868. data/vendor/local/share/doc/groonga/en/html/expr.html +0 -178
  869. data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +0 -226
  870. data/vendor/local/share/doc/groonga/en/html/indexing.html +0 -318
  871. data/vendor/local/share/doc/groonga/ja/html/_sources/commands/select.txt +0 -504
  872. data/vendor/local/share/doc/groonga/ja/html/_sources/expr.txt +0 -45
  873. data/vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_distance.txt +0 -92
  874. data/vendor/local/share/doc/groonga/ja/html/commands/select.html +0 -810
  875. data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +0 -187
  876. data/vendor/local/share/doc/groonga/ja/html/expr.html +0 -179
  877. data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +0 -227
  878. data/vendor/local/share/doc/groonga/source/commands/select.txt +0 -504
  879. data/vendor/local/share/doc/groonga/source/commands/suggest-completion.log +0 -32
  880. data/vendor/local/share/doc/groonga/source/commands/suggest-correction.log +0 -32
  881. data/vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log +0 -13
  882. data/vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log +0 -15
  883. data/vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log +0 -9
  884. data/vendor/local/share/doc/groonga/source/commands/suggest-mixed.log +0 -78
  885. data/vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log +0 -36
  886. data/vendor/local/share/doc/groonga/source/expr.txt +0 -45
  887. data/vendor/local/share/doc/groonga/source/functions/geo_distance.txt +0 -92
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: 7
4
+ hash: 1
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 4
10
- version: 2.0.4
9
+ - 7
10
+ version: 2.0.7
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - Kouhei Sutou
@@ -16,9 +16,10 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-05-02 00:00:00 Z
19
+ date: 2012-12-02 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
+ name: pkg-config
22
23
  version_requirements: &id001 !ruby/object:Gem::Requirement
23
24
  none: false
24
25
  requirements:
@@ -28,11 +29,11 @@ dependencies:
28
29
  segments:
29
30
  - 0
30
31
  version: "0"
31
- name: pkg-config
32
32
  prerelease: false
33
33
  type: :runtime
34
34
  requirement: *id001
35
35
  - !ruby/object:Gem::Dependency
36
+ name: json
36
37
  version_requirements: &id002 !ruby/object:Gem::Requirement
37
38
  none: false
38
39
  requirements:
@@ -42,11 +43,11 @@ dependencies:
42
43
  segments:
43
44
  - 0
44
45
  version: "0"
45
- name: json
46
46
  prerelease: false
47
47
  type: :runtime
48
48
  requirement: *id002
49
49
  - !ruby/object:Gem::Dependency
50
+ name: archive-zip
50
51
  version_requirements: &id003 !ruby/object:Gem::Requirement
51
52
  none: false
52
53
  requirements:
@@ -56,11 +57,11 @@ dependencies:
56
57
  segments:
57
58
  - 0
58
59
  version: "0"
59
- name: archive-zip
60
60
  prerelease: false
61
61
  type: :runtime
62
62
  requirement: *id003
63
63
  - !ruby/object:Gem::Dependency
64
+ name: test-unit
64
65
  version_requirements: &id004 !ruby/object:Gem::Requirement
65
66
  none: false
66
67
  requirements:
@@ -72,11 +73,11 @@ dependencies:
72
73
  - 4
73
74
  - 6
74
75
  version: 2.4.6
75
- name: test-unit
76
76
  prerelease: false
77
77
  type: :development
78
78
  requirement: *id004
79
79
  - !ruby/object:Gem::Dependency
80
+ name: test-unit-notify
80
81
  version_requirements: &id005 !ruby/object:Gem::Requirement
81
82
  none: false
82
83
  requirements:
@@ -86,11 +87,11 @@ dependencies:
86
87
  segments:
87
88
  - 0
88
89
  version: "0"
89
- name: test-unit-notify
90
90
  prerelease: false
91
91
  type: :development
92
92
  requirement: *id005
93
93
  - !ruby/object:Gem::Dependency
94
+ name: rake
94
95
  version_requirements: &id006 !ruby/object:Gem::Requirement
95
96
  none: false
96
97
  requirements:
@@ -100,11 +101,11 @@ dependencies:
100
101
  segments:
101
102
  - 0
102
103
  version: "0"
103
- name: rake
104
104
  prerelease: false
105
105
  type: :development
106
106
  requirement: *id006
107
107
  - !ruby/object:Gem::Dependency
108
+ name: rake-compiler
108
109
  version_requirements: &id007 !ruby/object:Gem::Requirement
109
110
  none: false
110
111
  requirements:
@@ -114,11 +115,11 @@ dependencies:
114
115
  segments:
115
116
  - 0
116
117
  version: "0"
117
- name: rake-compiler
118
118
  prerelease: false
119
119
  type: :development
120
120
  requirement: *id007
121
121
  - !ruby/object:Gem::Dependency
122
+ name: bundler
122
123
  version_requirements: &id008 !ruby/object:Gem::Requirement
123
124
  none: false
124
125
  requirements:
@@ -128,11 +129,11 @@ dependencies:
128
129
  segments:
129
130
  - 0
130
131
  version: "0"
131
- name: bundler
132
132
  prerelease: false
133
133
  type: :development
134
134
  requirement: *id008
135
135
  - !ruby/object:Gem::Dependency
136
+ name: yard
136
137
  version_requirements: &id009 !ruby/object:Gem::Requirement
137
138
  none: false
138
139
  requirements:
@@ -142,12 +143,28 @@ dependencies:
142
143
  segments:
143
144
  - 0
144
145
  version: "0"
145
- name: yard
146
146
  prerelease: false
147
147
  type: :development
148
148
  requirement: *id009
149
149
  - !ruby/object:Gem::Dependency
150
+ name: packnga
150
151
  version_requirements: &id010 !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - "="
155
+ - !ruby/object:Gem::Version
156
+ hash: 51
157
+ segments:
158
+ - 0
159
+ - 9
160
+ - 4
161
+ version: 0.9.4
162
+ prerelease: false
163
+ type: :development
164
+ requirement: *id010
165
+ - !ruby/object:Gem::Dependency
166
+ name: RedCloth
167
+ version_requirements: &id011 !ruby/object:Gem::Requirement
151
168
  none: false
152
169
  requirements:
153
170
  - - ">="
@@ -156,10 +173,9 @@ dependencies:
156
173
  segments:
157
174
  - 0
158
175
  version: "0"
159
- name: packnga
160
176
  prerelease: false
161
177
  type: :development
162
- requirement: *id010
178
+ requirement: *id011
163
179
  description: |-
164
180
  rroonga is an extension library to use groonga's DB-API
165
181
  layer. rroonga provides Rubyish readable and writable API
@@ -170,8 +186,8 @@ email:
170
186
  - a@razil.jp
171
187
  executables:
172
188
  - grntest-log-analyze
173
- - grndump
174
189
  - groonga-query-log-extract
190
+ - grndump
175
191
  extensions: []
176
192
 
177
193
  extra_rdoc_files:
@@ -181,970 +197,1254 @@ files:
181
197
  - AUTHORS
182
198
  - Rakefile
183
199
  - Gemfile
200
+ - rroonga.gemspec
184
201
  - rroonga-build.rb
185
202
  - extconf.rb
186
- - lib/groonga/schema.rb
187
- - lib/groonga/expression-builder-19.rb
188
- - lib/groonga/pagination.rb
203
+ - lib/groonga.rb
204
+ - lib/groonga/geo-point.rb
205
+ - lib/groonga/record.rb
189
206
  - lib/groonga/view-record.rb
190
- - lib/groonga/query-log.rb
191
- - lib/groonga/patricia-trie.rb
207
+ - lib/groonga/context.rb
192
208
  - lib/groonga/grntest-log.rb
209
+ - lib/groonga/pagination.rb
210
+ - lib/groonga/database.rb
211
+ - lib/groonga/schema.rb
193
212
  - lib/groonga/command.rb
194
- - lib/groonga/dumper.rb
195
213
  - lib/groonga/posting.rb
196
- - lib/groonga/context.rb
197
- - lib/groonga/record.rb
214
+ - lib/groonga/patricia-trie.rb
198
215
  - lib/groonga/expression-builder.rb
199
- - lib/groonga.rb
200
- - benchmark/common.rb
201
- - benchmark/repeat-load.rb
202
- - benchmark/read-write-many-small-items.rb
216
+ - lib/groonga/dumper.rb
217
+ - lib/groonga/expression-builder-19.rb
203
218
  - benchmark/create-wikipedia-database.rb
219
+ - benchmark/common.rb
204
220
  - benchmark/write-many-small-items.rb
221
+ - benchmark/read-write-many-small-items.rb
205
222
  - benchmark/select.rb
223
+ - benchmark/repeat-load.rb
206
224
  - misc/grnop2ruby.rb
207
225
  - example/index-html.rb
208
226
  - example/bookmark.rb
209
- - ext/groonga/rb-grn-procedure.c
210
- - ext/groonga/rb-grn-column.c
211
- - ext/groonga/rb-grn-index-column.c
212
- - ext/groonga/rb-grn-encoding-support.c
213
- - ext/groonga/rb-grn-variable.c
214
- - ext/groonga/rb-grn-table.c
215
- - ext/groonga/rb-grn-hash-cursor.c
216
- - ext/groonga/rb-grn-table-cursor-key-support.c
217
- - ext/groonga/rb-grn-object.c
218
- - ext/groonga/rb-grn-double-array-trie.c
227
+ - ext/groonga/rb-grn-exception.c
219
228
  - ext/groonga/rb-grn-view-accessor.c
220
- - ext/groonga/rb-grn-table-key-support.c
221
- - ext/groonga/rb-grn-array.c
222
- - ext/groonga/rb-grn-patricia-trie.c
223
- - ext/groonga/rb-grn-double-array-trie-cursor.c
224
- - ext/groonga/rb-grn-utils.c
229
+ - ext/groonga/rb-grn-hash-cursor.c
225
230
  - ext/groonga/rb-grn-record.c
226
- - ext/groonga/rb-groonga.c
227
- - ext/groonga/rb-grn-exception.c
231
+ - ext/groonga/rb-grn-variable.c
232
+ - ext/groonga/rb-grn-view.c
233
+ - ext/groonga/rb-grn-table-cursor-key-support.c
234
+ - ext/groonga/rb-grn-fix-size-column.c
235
+ - ext/groonga/rb-grn-context.c
236
+ - ext/groonga/rb-grn-plugin.c
237
+ - ext/groonga/rb-grn-hash.c
228
238
  - ext/groonga/rb-grn-variable-size-column.c
229
- - ext/groonga/rb-grn-encoding.c
230
- - ext/groonga/rb-grn-expression-builder.c
239
+ - ext/groonga/rb-grn-index-column.c
231
240
  - ext/groonga/rb-grn-operator.c
232
- - ext/groonga/rb-grn-snippet.c
233
- - ext/groonga/rb-grn-array-cursor.c
234
- - ext/groonga/rb-grn-type.c
241
+ - ext/groonga/rb-grn-table-key-support.c
242
+ - ext/groonga/rb-grn-patricia-trie.c
235
243
  - ext/groonga/rb-grn-table-cursor.c
236
- - ext/groonga/rb-grn-fix-size-column.c
237
- - ext/groonga/rb-grn-view-cursor.c
238
- - ext/groonga/rb-grn-logger.c
239
- - ext/groonga/rb-grn-plugin.c
240
- - ext/groonga/rb-grn-database.c
244
+ - ext/groonga/rb-grn-object.c
245
+ - ext/groonga/rb-grn-table.c
246
+ - ext/groonga/rb-grn-procedure.c
247
+ - ext/groonga/rb-grn-snippet.c
248
+ - ext/groonga/rb-grn-encoding-support.c
241
249
  - ext/groonga/rb-grn-view-record.c
242
250
  - ext/groonga/rb-grn-patricia-trie-cursor.c
251
+ - ext/groonga/rb-grn-array.c
252
+ - ext/groonga/rb-grn-database.c
253
+ - ext/groonga/rb-grn-view-cursor.c
254
+ - ext/groonga/rb-grn-column.c
243
255
  - ext/groonga/rb-grn-index-cursor.c
244
- - ext/groonga/rb-grn-view.c
256
+ - ext/groonga/rb-grn-type.c
245
257
  - ext/groonga/rb-grn-accessor.c
246
- - ext/groonga/rb-grn-context.c
258
+ - ext/groonga/rb-grn-double-array-trie-cursor.c
247
259
  - ext/groonga/rb-grn-posting.c
260
+ - ext/groonga/rb-groonga.c
261
+ - ext/groonga/rb-grn-geo-point.c
262
+ - ext/groonga/rb-grn-array-cursor.c
263
+ - ext/groonga/rb-grn-utils.c
264
+ - ext/groonga/rb-grn-logger.c
248
265
  - ext/groonga/rb-grn-expression.c
249
- - ext/groonga/rb-grn-hash.c
266
+ - ext/groonga/rb-grn-encoding.c
267
+ - ext/groonga/rb-grn-expression-builder.c
268
+ - ext/groonga/rb-grn-double-array-trie.c
250
269
  - ext/groonga/rb-grn.h
251
270
  - ext/groonga/extconf.rb
252
271
  - ext/groonga/groonga.def
272
+ - test/test-remote.rb
273
+ - test/test-accessor.rb
274
+ - test/test-database-dumper.rb
275
+ - test/test-index-column.rb
276
+ - test/groonga-test-utils.rb
277
+ - test/test-pagination.rb
278
+ - test/test-table.rb
279
+ - test/test-variable-size-column.rb
280
+ - test/test-plugin.rb
281
+ - test/test-hash.rb
282
+ - test/test-table-traverse.rb
283
+ - test/test-encoding.rb
284
+ - test/test-schema-create-table.rb
285
+ - test/test-type.rb
286
+ - test/test-database.rb
287
+ - test/test-variable.rb
288
+ - test/test-table-select.rb
289
+ - test/test-patricia-trie.rb
290
+ - test/test-geo-point.rb
291
+ - test/test-expression-builder.rb
292
+ - test/test-logger.rb
293
+ - test/test-array.rb
294
+ - test/test-record.rb
295
+ - test/test-column.rb
296
+ - test/test-fix-size-column.rb
297
+ - test/run-test.rb
298
+ - test/test-procedure.rb
299
+ - test/test-table-dumper.rb
300
+ - test/test-schema.rb
301
+ - test/test-view.rb
302
+ - test/test-table-select-mecab.rb
303
+ - test/test-command-select.rb
304
+ - test/test-table-select-normalize.rb
305
+ - test/test-expression.rb
306
+ - test/test-vector-column.rb
307
+ - test/test-version.rb
308
+ - test/test-schema-view.rb
309
+ - test/test-index-cursor.rb
310
+ - test/test-double-array-trie.rb
311
+ - test/test-exception.rb
312
+ - test/test-schema-dumper.rb
313
+ - test/test-schema-type.rb
314
+ - test/test-table-select-weight.rb
315
+ - test/test-gqtp.rb
316
+ - test/test-context.rb
317
+ - test/test-snippet.rb
318
+ - test/test-table-offset-and-limit.rb
253
319
  - bin/grntest-log-analyze
254
- - bin/grndump
255
320
  - bin/groonga-query-log-extract
321
+ - bin/grndump
256
322
  - lib/1.8/groonga.so
257
323
  - lib/1.9/groonga.so
258
- - vendor/local/bin/libstdc++-6.dll
259
- - vendor/local/bin/libgroonga-0.dll
260
- - vendor/local/bin/groonga-benchmark.exe
261
- - vendor/local/bin/libmsgpackc-2.dll
262
- - vendor/local/bin/mecab-config
263
- - vendor/local/bin/mecab.exe
264
- - vendor/local/bin/mecabrc
265
- - vendor/local/bin/groonga.exe
266
- - vendor/local/bin/libgcc_s_sjlj-1.dll
267
- - vendor/local/bin/libmecab-1.dll
268
- - vendor/local/bin/libmsgpack-3.dll
269
- - vendor/local/share/mecab/dic/naist-jdic/unk.dic
270
- - vendor/local/share/mecab/dic/naist-jdic/unk.def
271
- - vendor/local/share/mecab/dic/naist-jdic/pos-id.def
272
- - vendor/local/share/mecab/dic/naist-jdic/feature.def
273
- - vendor/local/share/mecab/dic/naist-jdic/char.bin
274
- - vendor/local/share/mecab/dic/naist-jdic/matrix.def
275
- - vendor/local/share/mecab/dic/naist-jdic/rewrite.def
276
- - vendor/local/share/mecab/dic/naist-jdic/naist-jdic.csv
277
- - vendor/local/share/mecab/dic/naist-jdic/dicrc
278
- - vendor/local/share/mecab/dic/naist-jdic/sys.dic
279
- - vendor/local/share/mecab/dic/naist-jdic/right-id.def
280
- - vendor/local/share/mecab/dic/naist-jdic/left-id.def
281
- - vendor/local/share/mecab/dic/naist-jdic/char.def
282
- - vendor/local/share/mecab/dic/naist-jdic/matrix.bin
283
- - vendor/local/share/license/mecab/COPYING
324
+ - vendor/local/sbin/groonga-httpd-restart
284
325
  - vendor/local/share/license/mecab/GPL
326
+ - vendor/local/share/license/mecab/AUTHORS
285
327
  - vendor/local/share/license/mecab/LGPL
328
+ - vendor/local/share/license/mecab/COPYING
286
329
  - vendor/local/share/license/mecab/BSD
287
- - vendor/local/share/license/mecab/AUTHORS
288
- - vendor/local/share/license/naist-jdic/COPYING
330
+ - vendor/local/share/license/groonga/AUTHORS
331
+ - vendor/local/share/license/groonga/COPYING
289
332
  - vendor/local/share/license/naist-jdic/AUTHORS
333
+ - vendor/local/share/license/naist-jdic/COPYING
334
+ - vendor/local/share/license/msgpack/AUTHORS
290
335
  - vendor/local/share/license/msgpack/COPYING
291
336
  - vendor/local/share/license/msgpack/LICENSE
292
- - vendor/local/share/license/msgpack/AUTHORS
293
- - vendor/local/share/license/groonga/COPYING
294
- - vendor/local/share/license/groonga/AUTHORS
295
- - vendor/local/share/doc/groonga/en/html/search.html
296
- - vendor/local/share/doc/groonga/en/html/objects.inv
297
- - vendor/local/share/doc/groonga/en/html/news.html
298
- - vendor/local/share/doc/groonga/en/html/tutorial/search.html
299
- - vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html
300
- - vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html
301
- - vendor/local/share/doc/groonga/en/html/tutorial/network.html
302
- - vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html
303
- - vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html
304
- - vendor/local/share/doc/groonga/en/html/tutorial/index.html
305
- - vendor/local/share/doc/groonga/en/html/tutorial/data.html
306
- - vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html
307
- - vendor/local/share/doc/groonga/en/html/tutorial/introduction.html
308
- - vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html
309
- - vendor/local/share/doc/groonga/en/html/tutorial.html
310
- - vendor/local/share/doc/groonga/en/html/commands.html
311
- - vendor/local/share/doc/groonga/en/html/indexing.html
312
- - vendor/local/share/doc/groonga/en/html/type.html
313
- - vendor/local/share/doc/groonga/en/html/troubleshooting.html
314
- - vendor/local/share/doc/groonga/en/html/index.html
315
- - vendor/local/share/doc/groonga/en/html/news/senna.html
316
- - vendor/local/share/doc/groonga/en/html/news/1.1.x.html
317
- - vendor/local/share/doc/groonga/en/html/news/1.0.x.html
318
- - vendor/local/share/doc/groonga/en/html/news/1.2.x.html
319
- - vendor/local/share/doc/groonga/en/html/news/0.x.html
320
- - vendor/local/share/doc/groonga/en/html/_static/jquery.js
321
- - vendor/local/share/doc/groonga/en/html/_static/up.png
322
- - vendor/local/share/doc/groonga/en/html/_static/groonga.css
323
- - vendor/local/share/doc/groonga/en/html/_static/basic.css
324
- - vendor/local/share/doc/groonga/en/html/_static/favicon.ico
325
- - vendor/local/share/doc/groonga/en/html/_static/file.png
326
- - vendor/local/share/doc/groonga/en/html/_static/header-background.png
327
- - vendor/local/share/doc/groonga/en/html/_static/comment-close.png
328
- - vendor/local/share/doc/groonga/en/html/_static/pygments.css
329
- - vendor/local/share/doc/groonga/en/html/_static/minus.png
330
- - vendor/local/share/doc/groonga/en/html/_static/searchtools.js
331
- - vendor/local/share/doc/groonga/en/html/_static/navigation-bar.png
332
- - vendor/local/share/doc/groonga/en/html/_static/us.png
333
- - vendor/local/share/doc/groonga/en/html/_static/doctools.js
334
- - vendor/local/share/doc/groonga/en/html/_static/jp.png
335
- - vendor/local/share/doc/groonga/en/html/_static/websupport.js
336
- - vendor/local/share/doc/groonga/en/html/_static/up-pressed.png
337
- - vendor/local/share/doc/groonga/en/html/_static/underscore.js
338
- - vendor/local/share/doc/groonga/en/html/_static/down-pressed.png
339
- - vendor/local/share/doc/groonga/en/html/_static/logo.png
340
- - vendor/local/share/doc/groonga/en/html/_static/comment-bright.png
341
- - vendor/local/share/doc/groonga/en/html/_static/comment.png
342
- - vendor/local/share/doc/groonga/en/html/_static/plus.png
343
- - vendor/local/share/doc/groonga/en/html/_static/down.png
344
- - vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif
345
- - vendor/local/share/doc/groonga/en/html/geolocation_search.html
346
- - vendor/local/share/doc/groonga/en/html/.buildinfo
347
- - vendor/local/share/doc/groonga/en/html/executables.html
348
- - vendor/local/share/doc/groonga/en/html/community.html
349
- - vendor/local/share/doc/groonga/en/html/genindex.html
350
- - vendor/local/share/doc/groonga/en/html/expr.html
351
- - vendor/local/share/doc/groonga/en/html/reference.html
352
- - vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html
353
- - vendor/local/share/doc/groonga/en/html/functions.html
354
- - vendor/local/share/doc/groonga/en/html/contribution.html
355
- - vendor/local/share/doc/groonga/en/html/output.html
356
- - vendor/local/share/doc/groonga/en/html/limitations.html
357
- - vendor/local/share/doc/groonga/en/html/suggest.html
358
- - vendor/local/share/doc/groonga/en/html/_sources/output.txt
359
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/lexicon.txt
360
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt
361
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt
362
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt
363
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt
364
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt
365
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt
366
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt
367
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt
368
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt
369
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt
370
- - vendor/local/share/doc/groonga/en/html/_sources/limitations.txt
371
- - vendor/local/share/doc/groonga/en/html/_sources/geolocation_search.txt
372
- - vendor/local/share/doc/groonga/en/html/_sources/commands.txt
373
- - vendor/local/share/doc/groonga/en/html/_sources/contribution.txt
374
- - vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt
375
- - vendor/local/share/doc/groonga/en/html/_sources/expr.txt
376
- - vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt
377
- - vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt
378
- - vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt
379
- - vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt
380
- - vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt
381
- - vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt
382
- - vendor/local/share/doc/groonga/en/html/_sources/reference.txt
383
- - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
384
- - vendor/local/share/doc/groonga/en/html/_sources/functions.txt
385
- - vendor/local/share/doc/groonga/en/html/_sources/index.txt
386
- - vendor/local/share/doc/groonga/en/html/_sources/indexing.txt
387
- - vendor/local/share/doc/groonga/en/html/_sources/community.txt
388
- - vendor/local/share/doc/groonga/en/html/_sources/command_version.txt
389
- - vendor/local/share/doc/groonga/en/html/_sources/news.txt
390
- - vendor/local/share/doc/groonga/en/html/_sources/pseudo_column.txt
391
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt
392
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt
393
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/com.txt
394
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/query.txt
395
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt
396
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt
397
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt
398
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/c-api.txt
399
- - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt
400
- - vendor/local/share/doc/groonga/en/html/_sources/commands/table_list.txt
401
- - vendor/local/share/doc/groonga/en/html/_sources/commands/define_selector.txt
402
- - vendor/local/share/doc/groonga/en/html/_sources/commands/log_put.txt
403
- - vendor/local/share/doc/groonga/en/html/_sources/commands/view_add.txt
404
- - vendor/local/share/doc/groonga/en/html/_sources/commands/shutdown.txt
405
- - vendor/local/share/doc/groonga/en/html/_sources/commands/cache_limit.txt
406
- - vendor/local/share/doc/groonga/en/html/_sources/commands/check.txt
407
- - vendor/local/share/doc/groonga/en/html/_sources/commands/delete.txt
408
- - vendor/local/share/doc/groonga/en/html/_sources/commands/select.txt
409
- - vendor/local/share/doc/groonga/en/html/_sources/commands/column_create.txt
410
- - vendor/local/share/doc/groonga/en/html/_sources/commands/log_level.txt
411
- - vendor/local/share/doc/groonga/en/html/_sources/commands/table_remove.txt
412
- - vendor/local/share/doc/groonga/en/html/_sources/commands/clearlock.txt
413
- - vendor/local/share/doc/groonga/en/html/_sources/commands/load.txt
414
- - vendor/local/share/doc/groonga/en/html/_sources/commands/column_remove.txt
415
- - vendor/local/share/doc/groonga/en/html/_sources/commands/dump.txt
416
- - vendor/local/share/doc/groonga/en/html/_sources/commands/quit.txt
417
- - vendor/local/share/doc/groonga/en/html/_sources/commands/defrag.txt
418
- - vendor/local/share/doc/groonga/en/html/_sources/commands/log_reopen.txt
419
- - vendor/local/share/doc/groonga/en/html/_sources/commands/table_create.txt
420
- - vendor/local/share/doc/groonga/en/html/_sources/commands/status.txt
421
- - vendor/local/share/doc/groonga/en/html/_sources/commands/suggest.txt
422
- - vendor/local/share/doc/groonga/en/html/_sources/commands/column_list.txt
423
- - vendor/local/share/doc/groonga/en/html/_sources/executables/groonga-http.txt
424
- - vendor/local/share/doc/groonga/en/html/_sources/executables/grntest.txt
425
- - vendor/local/share/doc/groonga/en/html/_sources/executables/groonga-suggest-create-dataset.txt
426
- - vendor/local/share/doc/groonga/en/html/_sources/executables/grnslap.txt
427
- - vendor/local/share/doc/groonga/en/html/_sources/executables/groonga.txt
428
- - vendor/local/share/doc/groonga/en/html/_sources/executables.txt
429
- - vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt
430
- - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting.txt
431
- - vendor/local/share/doc/groonga/en/html/_sources/suggest.txt
432
- - vendor/local/share/doc/groonga/en/html/_sources/log.txt
433
- - vendor/local/share/doc/groonga/en/html/_sources/install.txt
434
- - vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt
435
- - vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt
436
- - vendor/local/share/doc/groonga/en/html/_sources/suggest/tutorial.txt
437
- - vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt
438
- - vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt
439
- - vendor/local/share/doc/groonga/en/html/_sources/functions/edit_distance.txt
440
- - vendor/local/share/doc/groonga/en/html/_sources/functions/geo_in_circle.txt
441
- - vendor/local/share/doc/groonga/en/html/_sources/functions/rand.txt
442
- - vendor/local/share/doc/groonga/en/html/_sources/functions/now.txt
443
- - vendor/local/share/doc/groonga/en/html/_sources/functions/geo_in_rectangle.txt
444
- - vendor/local/share/doc/groonga/en/html/_sources/functions/geo_distance.txt
445
- - vendor/local/share/doc/groonga/en/html/_sources/type.txt
446
- - vendor/local/share/doc/groonga/en/html/_sources/spec.txt
447
- - vendor/local/share/doc/groonga/en/html/pseudo_column.html
448
- - vendor/local/share/doc/groonga/en/html/searchindex.js
449
- - vendor/local/share/doc/groonga/en/html/contribution/development.html
450
- - vendor/local/share/doc/groonga/en/html/contribution/documentation.html
451
- - vendor/local/share/doc/groonga/en/html/contribution/development/document.html
452
- - vendor/local/share/doc/groonga/en/html/contribution/development/query.html
453
- - vendor/local/share/doc/groonga/en/html/contribution/development/test.html
454
- - vendor/local/share/doc/groonga/en/html/contribution/development/com.html
455
- - vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html
456
- - vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html
457
- - vendor/local/share/doc/groonga/en/html/contribution/report.html
458
- - vendor/local/share/doc/groonga/en/html/install.html
459
- - vendor/local/share/doc/groonga/en/html/_images/geo-points.png
460
- - vendor/local/share/doc/groonga/en/html/commands/log_reopen.html
461
- - vendor/local/share/doc/groonga/en/html/commands/column_remove.html
462
- - vendor/local/share/doc/groonga/en/html/commands/status.html
463
- - vendor/local/share/doc/groonga/en/html/commands/defrag.html
464
- - vendor/local/share/doc/groonga/en/html/commands/define_selector.html
465
- - vendor/local/share/doc/groonga/en/html/commands/table_list.html
466
- - vendor/local/share/doc/groonga/en/html/commands/table_remove.html
467
- - vendor/local/share/doc/groonga/en/html/commands/log_level.html
468
- - vendor/local/share/doc/groonga/en/html/commands/load.html
469
- - vendor/local/share/doc/groonga/en/html/commands/shutdown.html
470
- - vendor/local/share/doc/groonga/en/html/commands/dump.html
471
- - vendor/local/share/doc/groonga/en/html/commands/column_list.html
472
- - vendor/local/share/doc/groonga/en/html/commands/suggest.html
473
- - vendor/local/share/doc/groonga/en/html/commands/cache_limit.html
474
- - vendor/local/share/doc/groonga/en/html/commands/select.html
475
- - vendor/local/share/doc/groonga/en/html/commands/clearlock.html
476
- - vendor/local/share/doc/groonga/en/html/commands/check.html
477
- - vendor/local/share/doc/groonga/en/html/commands/column_create.html
478
- - vendor/local/share/doc/groonga/en/html/commands/log_put.html
479
- - vendor/local/share/doc/groonga/en/html/commands/view_add.html
480
- - vendor/local/share/doc/groonga/en/html/commands/quit.html
481
- - vendor/local/share/doc/groonga/en/html/commands/delete.html
482
- - vendor/local/share/doc/groonga/en/html/commands/table_create.html
483
- - vendor/local/share/doc/groonga/en/html/command_version.html
484
- - vendor/local/share/doc/groonga/en/html/executables/grntest.html
485
- - vendor/local/share/doc/groonga/en/html/executables/grnslap.html
486
- - vendor/local/share/doc/groonga/en/html/executables/groonga.html
487
- - vendor/local/share/doc/groonga/en/html/executables/groonga-http.html
488
- - vendor/local/share/doc/groonga/en/html/executables/groonga-suggest-create-dataset.html
489
- - vendor/local/share/doc/groonga/en/html/characteristic.html
490
- - vendor/local/share/doc/groonga/en/html/spec/search.html
491
- - vendor/local/share/doc/groonga/en/html/spec.html
492
- - vendor/local/share/doc/groonga/en/html/suggest/correction.html
493
- - vendor/local/share/doc/groonga/en/html/suggest/tutorial.html
494
- - vendor/local/share/doc/groonga/en/html/suggest/suggestion.html
495
- - vendor/local/share/doc/groonga/en/html/suggest/introduction.html
496
- - vendor/local/share/doc/groonga/en/html/suggest/completion.html
497
- - vendor/local/share/doc/groonga/en/html/functions/rand.html
498
- - vendor/local/share/doc/groonga/en/html/functions/geo_in_circle.html
499
- - vendor/local/share/doc/groonga/en/html/functions/edit_distance.html
500
- - vendor/local/share/doc/groonga/en/html/functions/geo_distance.html
501
- - vendor/local/share/doc/groonga/en/html/functions/now.html
502
- - vendor/local/share/doc/groonga/en/html/functions/geo_in_rectangle.html
503
- - vendor/local/share/doc/groonga/en/html/log.html
504
- - vendor/local/share/doc/groonga/ja/html/search.html
505
- - vendor/local/share/doc/groonga/ja/html/objects.inv
506
- - vendor/local/share/doc/groonga/ja/html/news.html
507
- - vendor/local/share/doc/groonga/ja/html/tutorial/search.html
508
- - vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html
509
- - vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html
510
- - vendor/local/share/doc/groonga/ja/html/tutorial/network.html
511
- - vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html
512
- - vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html
513
- - vendor/local/share/doc/groonga/ja/html/tutorial/index.html
514
- - vendor/local/share/doc/groonga/ja/html/tutorial/data.html
515
- - vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html
516
- - vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html
517
- - vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html
518
- - vendor/local/share/doc/groonga/ja/html/tutorial.html
519
- - vendor/local/share/doc/groonga/ja/html/commands.html
520
- - vendor/local/share/doc/groonga/ja/html/indexing.html
521
- - vendor/local/share/doc/groonga/ja/html/type.html
522
- - vendor/local/share/doc/groonga/ja/html/troubleshooting.html
523
- - vendor/local/share/doc/groonga/ja/html/index.html
524
- - vendor/local/share/doc/groonga/ja/html/news/senna.html
525
- - vendor/local/share/doc/groonga/ja/html/news/1.1.x.html
526
- - vendor/local/share/doc/groonga/ja/html/news/1.0.x.html
527
- - vendor/local/share/doc/groonga/ja/html/news/1.2.x.html
528
- - vendor/local/share/doc/groonga/ja/html/news/0.x.html
529
- - vendor/local/share/doc/groonga/ja/html/_static/jquery.js
530
- - vendor/local/share/doc/groonga/ja/html/_static/up.png
531
- - vendor/local/share/doc/groonga/ja/html/_static/groonga.css
532
- - vendor/local/share/doc/groonga/ja/html/_static/basic.css
533
- - vendor/local/share/doc/groonga/ja/html/_static/favicon.ico
534
- - vendor/local/share/doc/groonga/ja/html/_static/file.png
535
- - vendor/local/share/doc/groonga/ja/html/_static/header-background.png
536
- - vendor/local/share/doc/groonga/ja/html/_static/comment-close.png
537
- - vendor/local/share/doc/groonga/ja/html/_static/pygments.css
538
- - vendor/local/share/doc/groonga/ja/html/_static/minus.png
539
- - vendor/local/share/doc/groonga/ja/html/_static/searchtools.js
540
- - vendor/local/share/doc/groonga/ja/html/_static/navigation-bar.png
541
- - vendor/local/share/doc/groonga/ja/html/_static/us.png
542
- - vendor/local/share/doc/groonga/ja/html/_static/doctools.js
543
- - vendor/local/share/doc/groonga/ja/html/_static/jp.png
544
- - vendor/local/share/doc/groonga/ja/html/_static/websupport.js
545
- - vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png
546
- - vendor/local/share/doc/groonga/ja/html/_static/underscore.js
547
- - vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png
548
- - vendor/local/share/doc/groonga/ja/html/_static/logo.png
549
- - vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png
550
- - vendor/local/share/doc/groonga/ja/html/_static/comment.png
551
- - vendor/local/share/doc/groonga/ja/html/_static/plus.png
552
- - vendor/local/share/doc/groonga/ja/html/_static/down.png
553
- - vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif
554
- - vendor/local/share/doc/groonga/ja/html/geolocation_search.html
555
- - vendor/local/share/doc/groonga/ja/html/.buildinfo
556
- - vendor/local/share/doc/groonga/ja/html/executables.html
557
- - vendor/local/share/doc/groonga/ja/html/community.html
558
- - vendor/local/share/doc/groonga/ja/html/genindex.html
559
- - vendor/local/share/doc/groonga/ja/html/expr.html
560
- - vendor/local/share/doc/groonga/ja/html/reference.html
561
- - vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html
562
- - vendor/local/share/doc/groonga/ja/html/functions.html
563
- - vendor/local/share/doc/groonga/ja/html/contribution.html
564
- - vendor/local/share/doc/groonga/ja/html/output.html
565
- - vendor/local/share/doc/groonga/ja/html/limitations.html
566
- - vendor/local/share/doc/groonga/ja/html/suggest.html
567
- - vendor/local/share/doc/groonga/ja/html/_sources/output.txt
568
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt
569
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt
570
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt
571
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt
572
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt
573
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt
574
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt
575
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt
576
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt
577
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt
578
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt
579
- - vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt
580
- - vendor/local/share/doc/groonga/ja/html/_sources/geolocation_search.txt
581
- - vendor/local/share/doc/groonga/ja/html/_sources/commands.txt
582
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt
583
- - vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt
584
- - vendor/local/share/doc/groonga/ja/html/_sources/expr.txt
585
- - vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt
586
- - vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt
587
- - vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt
588
- - vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt
589
- - vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt
590
- - vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt
591
- - vendor/local/share/doc/groonga/ja/html/_sources/reference.txt
592
- - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
593
- - vendor/local/share/doc/groonga/ja/html/_sources/functions.txt
594
- - vendor/local/share/doc/groonga/ja/html/_sources/index.txt
595
- - vendor/local/share/doc/groonga/ja/html/_sources/indexing.txt
596
- - vendor/local/share/doc/groonga/ja/html/_sources/community.txt
597
- - vendor/local/share/doc/groonga/ja/html/_sources/command_version.txt
598
- - vendor/local/share/doc/groonga/ja/html/_sources/news.txt
599
- - vendor/local/share/doc/groonga/ja/html/_sources/pseudo_column.txt
600
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt
601
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt
602
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/com.txt
603
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/query.txt
604
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt
605
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt
606
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt
607
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/c-api.txt
608
- - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt
609
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/table_list.txt
610
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/define_selector.txt
611
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/log_put.txt
612
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/view_add.txt
613
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/shutdown.txt
614
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/cache_limit.txt
615
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/check.txt
616
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/delete.txt
617
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/select.txt
618
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/column_create.txt
619
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/log_level.txt
620
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/table_remove.txt
621
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/clearlock.txt
622
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/load.txt
623
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/column_remove.txt
624
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/dump.txt
625
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/quit.txt
626
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/defrag.txt
627
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/log_reopen.txt
628
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/table_create.txt
629
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/status.txt
630
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/suggest.txt
631
- - vendor/local/share/doc/groonga/ja/html/_sources/commands/column_list.txt
632
- - vendor/local/share/doc/groonga/ja/html/_sources/executables/groonga-http.txt
633
- - vendor/local/share/doc/groonga/ja/html/_sources/executables/grntest.txt
634
- - vendor/local/share/doc/groonga/ja/html/_sources/executables/groonga-suggest-create-dataset.txt
635
- - vendor/local/share/doc/groonga/ja/html/_sources/executables/grnslap.txt
636
- - vendor/local/share/doc/groonga/ja/html/_sources/executables/groonga.txt
637
- - vendor/local/share/doc/groonga/ja/html/_sources/executables.txt
638
- - vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt
639
- - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting.txt
640
- - vendor/local/share/doc/groonga/ja/html/_sources/suggest.txt
641
- - vendor/local/share/doc/groonga/ja/html/_sources/log.txt
642
- - vendor/local/share/doc/groonga/ja/html/_sources/install.txt
643
- - vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt
644
- - vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt
645
- - vendor/local/share/doc/groonga/ja/html/_sources/suggest/tutorial.txt
646
- - vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt
647
- - vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt
648
- - vendor/local/share/doc/groonga/ja/html/_sources/functions/edit_distance.txt
649
- - vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_in_circle.txt
650
- - vendor/local/share/doc/groonga/ja/html/_sources/functions/rand.txt
651
- - vendor/local/share/doc/groonga/ja/html/_sources/functions/now.txt
652
- - vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_in_rectangle.txt
653
- - vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_distance.txt
654
- - vendor/local/share/doc/groonga/ja/html/_sources/type.txt
655
- - vendor/local/share/doc/groonga/ja/html/_sources/spec.txt
656
- - vendor/local/share/doc/groonga/ja/html/pseudo_column.html
657
- - vendor/local/share/doc/groonga/ja/html/searchindex.js
658
- - vendor/local/share/doc/groonga/ja/html/contribution/development.html
659
- - vendor/local/share/doc/groonga/ja/html/contribution/documentation.html
660
- - vendor/local/share/doc/groonga/ja/html/contribution/development/document.html
661
- - vendor/local/share/doc/groonga/ja/html/contribution/development/query.html
662
- - vendor/local/share/doc/groonga/ja/html/contribution/development/test.html
663
- - vendor/local/share/doc/groonga/ja/html/contribution/development/com.html
664
- - vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html
665
- - vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html
666
- - vendor/local/share/doc/groonga/ja/html/contribution/report.html
667
- - vendor/local/share/doc/groonga/ja/html/install.html
668
- - vendor/local/share/doc/groonga/ja/html/_images/geo-points.png
669
- - vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html
670
- - vendor/local/share/doc/groonga/ja/html/commands/column_remove.html
671
- - vendor/local/share/doc/groonga/ja/html/commands/status.html
672
- - vendor/local/share/doc/groonga/ja/html/commands/defrag.html
673
- - vendor/local/share/doc/groonga/ja/html/commands/define_selector.html
674
- - vendor/local/share/doc/groonga/ja/html/commands/table_list.html
675
- - vendor/local/share/doc/groonga/ja/html/commands/table_remove.html
676
- - vendor/local/share/doc/groonga/ja/html/commands/log_level.html
677
- - vendor/local/share/doc/groonga/ja/html/commands/load.html
678
- - vendor/local/share/doc/groonga/ja/html/commands/shutdown.html
679
- - vendor/local/share/doc/groonga/ja/html/commands/dump.html
680
- - vendor/local/share/doc/groonga/ja/html/commands/column_list.html
681
- - vendor/local/share/doc/groonga/ja/html/commands/suggest.html
682
- - vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html
683
- - vendor/local/share/doc/groonga/ja/html/commands/select.html
684
- - vendor/local/share/doc/groonga/ja/html/commands/clearlock.html
685
- - vendor/local/share/doc/groonga/ja/html/commands/check.html
686
- - vendor/local/share/doc/groonga/ja/html/commands/column_create.html
687
- - vendor/local/share/doc/groonga/ja/html/commands/log_put.html
688
- - vendor/local/share/doc/groonga/ja/html/commands/view_add.html
689
- - vendor/local/share/doc/groonga/ja/html/commands/quit.html
690
- - vendor/local/share/doc/groonga/ja/html/commands/delete.html
691
- - vendor/local/share/doc/groonga/ja/html/commands/table_create.html
692
- - vendor/local/share/doc/groonga/ja/html/command_version.html
693
- - vendor/local/share/doc/groonga/ja/html/executables/grntest.html
694
- - vendor/local/share/doc/groonga/ja/html/executables/grnslap.html
695
- - vendor/local/share/doc/groonga/ja/html/executables/groonga.html
696
- - vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html
697
- - vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html
698
- - vendor/local/share/doc/groonga/ja/html/characteristic.html
699
- - vendor/local/share/doc/groonga/ja/html/spec/search.html
700
- - vendor/local/share/doc/groonga/ja/html/spec.html
701
- - vendor/local/share/doc/groonga/ja/html/suggest/correction.html
702
- - vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html
703
- - vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html
704
- - vendor/local/share/doc/groonga/ja/html/suggest/introduction.html
705
- - vendor/local/share/doc/groonga/ja/html/suggest/completion.html
706
- - vendor/local/share/doc/groonga/ja/html/functions/rand.html
707
- - vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html
708
- - vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html
709
- - vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html
710
- - vendor/local/share/doc/groonga/ja/html/functions/now.html
711
- - vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html
712
- - vendor/local/share/doc/groonga/ja/html/log.html
713
- - vendor/local/share/doc/groonga/source/output.txt
337
+ - vendor/local/share/mecab/dic/naist-jdic/char.def
338
+ - vendor/local/share/mecab/dic/naist-jdic/matrix.bin
339
+ - vendor/local/share/mecab/dic/naist-jdic/unk.dic
340
+ - vendor/local/share/mecab/dic/naist-jdic/sys.dic
341
+ - vendor/local/share/mecab/dic/naist-jdic/matrix.def
342
+ - vendor/local/share/mecab/dic/naist-jdic/left-id.def
343
+ - vendor/local/share/mecab/dic/naist-jdic/feature.def
344
+ - vendor/local/share/mecab/dic/naist-jdic/pos-id.def
345
+ - vendor/local/share/mecab/dic/naist-jdic/dicrc
346
+ - vendor/local/share/mecab/dic/naist-jdic/unk.def
347
+ - vendor/local/share/mecab/dic/naist-jdic/char.bin
348
+ - vendor/local/share/mecab/dic/naist-jdic/right-id.def
349
+ - vendor/local/share/mecab/dic/naist-jdic/naist-jdic.csv
350
+ - vendor/local/share/mecab/dic/naist-jdic/rewrite.def
351
+ - vendor/local/share/groonga/examples/dictionary/readme.txt
352
+ - vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh
353
+ - vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb
354
+ - vendor/local/share/groonga/examples/dictionary/init-db.sh
355
+ - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb
356
+ - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh
357
+ - vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js
358
+ - vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js
359
+ - vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js
360
+ - vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css
361
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/jquery-ui-1.8.12.custom.css
362
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
363
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
364
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
365
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
366
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_2e83ff_256x240.png
367
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_cd0a0a_256x240.png
368
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
369
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
370
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_454545_256x240.png
371
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_888888_256x240.png
372
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_222222_256x240.png
373
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
374
+ - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
375
+ - vendor/local/share/groonga/examples/dictionary/html/index.html
376
+ - vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
377
+ - vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
378
+ - vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh
379
+ - vendor/local/share/groonga/images/logo/groonga-logo.png
380
+ - vendor/local/share/groonga/images/logo/rroonga-icon.png
381
+ - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.svg
382
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-large.svg
383
+ - vendor/local/share/groonga/images/logo/groonga-icon-full-size.svg
384
+ - vendor/local/share/groonga/images/logo/nroonga-icon-full-size.png
385
+ - vendor/local/share/groonga/images/logo/nroonga-logo.svg
386
+ - vendor/local/share/groonga/images/logo/rroonga-icon-foreground-white.png
387
+ - vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.png
388
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.svg
389
+ - vendor/local/share/groonga/images/logo/groonga-icon.png
390
+ - vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.svg
391
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.svg
392
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-large.png
393
+ - vendor/local/share/groonga/images/logo/rroonga-logo.svg
394
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.png
395
+ - vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.svg
396
+ - vendor/local/share/groonga/images/logo/rroonga-logo.png
397
+ - vendor/local/share/groonga/images/logo/rroonga-icon-full-size.svg
398
+ - vendor/local/share/groonga/images/logo/rroonga-icon-foreground-white.svg
399
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.png
400
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner.png
401
+ - vendor/local/share/groonga/images/logo/mroonga-icon-full-size.png
402
+ - vendor/local/share/groonga/images/logo/groonga-logo.svg
403
+ - vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.svg
404
+ - vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.png
405
+ - vendor/local/share/groonga/images/logo/groonga-icon-full-size.png
406
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.png
407
+ - vendor/local/share/groonga/images/logo/mroonga-logo.svg
408
+ - vendor/local/share/groonga/images/logo/mroonga-icon-foreground-white.svg
409
+ - vendor/local/share/groonga/images/logo/mroonga-icon.svg
410
+ - vendor/local/share/groonga/images/logo/nroonga-icon.png
411
+ - vendor/local/share/groonga/images/logo/nroonga-icon-full-size.svg
412
+ - vendor/local/share/groonga/images/logo/rroonga-icon.svg
413
+ - vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.svg
414
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.svg
415
+ - vendor/local/share/groonga/images/logo/rroonga-icon-full-size.png
416
+ - vendor/local/share/groonga/images/logo/nroonga-icon.svg
417
+ - vendor/local/share/groonga/images/logo/mroonga-logo.png
418
+ - vendor/local/share/groonga/images/logo/nroonga-logo-foreground-white.png
419
+ - vendor/local/share/groonga/images/logo/mroonga-icon-full-size.svg
420
+ - vendor/local/share/groonga/images/logo/nroonga-logo.png
421
+ - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.png
422
+ - vendor/local/share/groonga/images/logo/nroonga-logo-foreground-white.svg
423
+ - vendor/local/share/groonga/images/logo/mroonga-icon.png
424
+ - vendor/local/share/groonga/images/logo/groonga-powered-by-banner.svg
425
+ - vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.png
426
+ - vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.png
427
+ - vendor/local/share/groonga/images/logo/mroonga-icon-foreground-white.png
428
+ - vendor/local/share/groonga/images/logo/groonga-icon.svg
429
+ - vendor/local/share/groonga/html/admin/favicon.ico
430
+ - vendor/local/share/groonga/html/admin/favicon.png
431
+ - vendor/local/share/groonga/html/admin/favicon.svg
432
+ - vendor/local/share/groonga/html/admin/js/groonga-admin.js
433
+ - vendor/local/share/groonga/html/admin/js/jquery.flot-0.7.min.js
434
+ - vendor/local/share/groonga/html/admin/js/jquery.flot.license.txt
435
+ - vendor/local/share/groonga/html/admin/js/jquery-ui-1.8.18.custom.min.js
436
+ - vendor/local/share/groonga/html/admin/js/jquery-1.7.2.min.js
437
+ - vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js
438
+ - vendor/local/share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css
439
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
440
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
441
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_2e83ff_256x240.png
442
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_cd0a0a_256x240.png
443
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png
444
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
445
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png
446
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
447
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
448
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
449
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
450
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_469bdd_256x240.png
451
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_6da8d5_256x240.png
452
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
453
+ - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png
454
+ - vendor/local/share/groonga/html/admin/css/groonga-admin.css
455
+ - vendor/local/share/groonga/html/admin/index.html
456
+ - vendor/local/share/groonga/html/admin/images/groonga.svg
457
+ - vendor/local/share/groonga/html/admin/images/groonga.png
458
+ - vendor/local/share/groonga/html/admin/images/loading.gif
459
+ - vendor/local/share/doc/groonga/source/index.txt
460
+ - vendor/local/share/doc/groonga/source/install/mac_os_x.txt
461
+ - vendor/local/share/doc/groonga/source/install/debian.txt
462
+ - vendor/local/share/doc/groonga/source/install/others.txt
463
+ - vendor/local/share/doc/groonga/source/install/ubuntu.txt
464
+ - vendor/local/share/doc/groonga/source/install/windows.txt
465
+ - vendor/local/share/doc/groonga/source/install/fedora.txt
466
+ - vendor/local/share/doc/groonga/source/install/centos.txt
467
+ - vendor/local/share/doc/groonga/source/install/solaris.txt
468
+ - vendor/local/share/doc/groonga/source/rdoc.py
469
+ - vendor/local/share/doc/groonga/source/reference/api.txt
470
+ - vendor/local/share/doc/groonga/source/reference/commands/clearlock.txt
471
+ - vendor/local/share/doc/groonga/source/reference/commands/check.txt
472
+ - vendor/local/share/doc/groonga/source/reference/commands/column_remove.txt
473
+ - vendor/local/share/doc/groonga/source/reference/commands/define_selector.txt
474
+ - vendor/local/share/doc/groonga/source/reference/commands/column_list.txt
475
+ - vendor/local/share/doc/groonga/source/reference/commands/shutdown.txt
476
+ - vendor/local/share/doc/groonga/source/reference/commands/table_create.txt
477
+ - vendor/local/share/doc/groonga/source/reference/commands/log_reopen.txt
478
+ - vendor/local/share/doc/groonga/source/reference/commands/quit.txt
479
+ - vendor/local/share/doc/groonga/source/reference/commands/dump.txt
480
+ - vendor/local/share/doc/groonga/source/reference/commands/delete.txt
481
+ - vendor/local/share/doc/groonga/source/reference/commands/table_remove.txt
482
+ - vendor/local/share/doc/groonga/source/reference/commands/table_list.txt
483
+ - vendor/local/share/doc/groonga/source/reference/commands/log_level.txt
484
+ - vendor/local/share/doc/groonga/source/reference/commands/suggest.txt
485
+ - vendor/local/share/doc/groonga/source/reference/commands/cache_limit.txt
486
+ - vendor/local/share/doc/groonga/source/reference/commands/select.txt
487
+ - vendor/local/share/doc/groonga/source/reference/commands/load.txt
488
+ - vendor/local/share/doc/groonga/source/reference/commands/log_put.txt
489
+ - vendor/local/share/doc/groonga/source/reference/commands/defrag.txt
490
+ - vendor/local/share/doc/groonga/source/reference/commands/column_create.txt
491
+ - vendor/local/share/doc/groonga/source/reference/commands/status.txt
492
+ - vendor/local/share/doc/groonga/source/reference/commands/view_add.txt
493
+ - vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt
494
+ - vendor/local/share/doc/groonga/source/reference/indexing.txt
495
+ - vendor/local/share/doc/groonga/source/reference/pseudo_column.txt
496
+ - vendor/local/share/doc/groonga/source/reference/tokenizers.txt
497
+ - vendor/local/share/doc/groonga/source/reference/functions.txt
498
+ - vendor/local/share/doc/groonga/source/reference/grn_expr.txt
499
+ - vendor/local/share/doc/groonga/source/reference/commands.txt
500
+ - vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt
501
+ - vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt
502
+ - vendor/local/share/doc/groonga/source/reference/functions/edit_distance.txt
503
+ - vendor/local/share/doc/groonga/source/reference/functions/now.txt
504
+ - vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt
505
+ - vendor/local/share/doc/groonga/source/reference/functions/geo_in_circle.txt
506
+ - vendor/local/share/doc/groonga/source/reference/functions/geo_in_rectangle.txt
507
+ - vendor/local/share/doc/groonga/source/reference/functions/rand.txt
508
+ - vendor/local/share/doc/groonga/source/reference/cast.txt
509
+ - vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt
510
+ - vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt
511
+ - vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt
512
+ - vendor/local/share/doc/groonga/source/reference/log.txt
513
+ - vendor/local/share/doc/groonga/source/reference/output.txt
514
+ - vendor/local/share/doc/groonga/source/reference/executables/groonga-suggest-create-dataset.txt
515
+ - vendor/local/share/doc/groonga/source/reference/executables/groonga.txt
516
+ - vendor/local/share/doc/groonga/source/reference/executables/groonga-server-http.txt
517
+ - vendor/local/share/doc/groonga/source/reference/executables/grnslap.txt
518
+ - vendor/local/share/doc/groonga/source/reference/executables/grntest.txt
519
+ - vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt
520
+ - vendor/local/share/doc/groonga/source/reference/command_version.txt
521
+ - vendor/local/share/doc/groonga/source/reference/executables.txt
522
+ - vendor/local/share/doc/groonga/source/reference/type.txt
523
+ - vendor/local/share/doc/groonga/source/server/http.txt
524
+ - vendor/local/share/doc/groonga/source/server/gqtp.txt
525
+ - vendor/local/share/doc/groonga/source/server/http/groonga.txt
526
+ - vendor/local/share/doc/groonga/source/server/http/comparison.txt
527
+ - vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt
528
+ - vendor/local/share/doc/groonga/source/server.txt
529
+ - vendor/local/share/doc/groonga/source/conf.py
530
+ - vendor/local/share/doc/groonga/source/development/travis-ci.txt
531
+ - vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt
532
+ - vendor/local/share/doc/groonga/source/troubleshooting.txt
533
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log
534
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log
535
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log
536
+ - vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log
537
+ - vendor/local/share/doc/groonga/source/example/reference/commands/status.log
538
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log
539
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log
540
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log
541
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log
542
+ - vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log
543
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log
544
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log
545
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log
546
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log
547
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log
548
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log
549
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log
550
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log
551
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log
552
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log
553
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log
554
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log
555
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log
556
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log
557
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log
558
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log
559
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log
560
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log
561
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log
562
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log
563
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log
564
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log
565
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log
566
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log
567
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log
568
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log
569
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log
570
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log
571
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log
572
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log
573
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log
574
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log
575
+ - vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log
576
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log
577
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-data.log
578
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log
579
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log
580
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log
581
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log
582
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log
583
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log
584
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log
585
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log
586
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log
587
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log
588
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log
589
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log
590
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log
591
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log
592
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log
593
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log
594
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log
595
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log
596
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log
597
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log
598
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log
599
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log
600
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log
601
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log
602
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log
603
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log
604
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log
605
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log
606
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log
607
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log
608
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log
609
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log
610
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log
611
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log
612
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log
613
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log
614
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log
615
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log
616
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log
617
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log
618
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log
619
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log
620
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log
621
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log
622
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log
623
+ - vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log
624
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log
625
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log
626
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log
627
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log
628
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log
629
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log
630
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log
631
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log
632
+ - vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log
633
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log
634
+ - vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log
635
+ - vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log
636
+ - vendor/local/share/doc/groonga/source/example/suggestion-1.log
637
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log
638
+ - vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log
639
+ - vendor/local/share/doc/groonga/source/example/tutorial/network-3.log
640
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-1.log
641
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-5.log
642
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log
643
+ - vendor/local/share/doc/groonga/source/example/tutorial/network-2.log
644
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log
645
+ - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log
646
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-6.log
647
+ - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log
648
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-7.log
649
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log
650
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log
651
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-2.log
652
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log
653
+ - vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log
654
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log
655
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-5.log
656
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-7.log
657
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log
658
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-3.log
659
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-5.log
660
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-3.log
661
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log
662
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-4.log
663
+ - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log
664
+ - vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log
665
+ - vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log
666
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-8.log
667
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log
668
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log
669
+ - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log
670
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log
671
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-1.log
672
+ - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log
673
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log
674
+ - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log
675
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-6.log
676
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-4.log
677
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-2.log
678
+ - vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log
679
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log
680
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-2.log
681
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log
682
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log
683
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log
684
+ - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log
685
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-3.log
686
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log
687
+ - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log
688
+ - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log
689
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-6.log
690
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log
691
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log
692
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log
693
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log
694
+ - vendor/local/share/doc/groonga/source/example/tutorial/network-1.log
695
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log
696
+ - vendor/local/share/doc/groonga/source/example/tutorial/data-7.log
697
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log
698
+ - vendor/local/share/doc/groonga/source/example/tutorial/search-4.log
699
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log
700
+ - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log
701
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log
702
+ - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log
703
+ - vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log
704
+ - vendor/local/share/doc/groonga/source/example/tutorial/index-1.log
705
+ - vendor/local/share/doc/groonga/source/example/correction-1.log
706
+ - vendor/local/share/doc/groonga/source/example/completion-1.log
707
+ - vendor/local/share/doc/groonga/source/limitations.txt
708
+ - vendor/local/share/doc/groonga/source/geolocation_search.txt
709
+ - vendor/local/share/doc/groonga/source/contribution.txt
710
+ - vendor/local/share/doc/groonga/source/tutorial/index.txt
711
+ - vendor/local/share/doc/groonga/source/tutorial/network.txt
714
712
  - vendor/local/share/doc/groonga/source/tutorial/lexicon.txt
715
- - vendor/local/share/doc/groonga/source/tutorial/drilldown.txt
716
713
  - vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt
717
- - vendor/local/share/doc/groonga/source/tutorial/search.txt
718
- - vendor/local/share/doc/groonga/source/tutorial/network.txt
719
- - vendor/local/share/doc/groonga/source/tutorial/introduction.txt
720
- - vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt
721
- - vendor/local/share/doc/groonga/source/tutorial/index.txt
722
714
  - vendor/local/share/doc/groonga/source/tutorial/match_columns.txt
723
715
  - vendor/local/share/doc/groonga/source/tutorial/data.txt
716
+ - vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt
717
+ - vendor/local/share/doc/groonga/source/tutorial/drilldown.txt
718
+ - vendor/local/share/doc/groonga/source/tutorial/search.txt
724
719
  - vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt
725
- - vendor/local/share/doc/groonga/source/limitations.txt
726
- - vendor/local/share/doc/groonga/source/geolocation_search.txt
727
- - vendor/local/share/doc/groonga/source/commands.txt
728
- - vendor/local/share/doc/groonga/source/images/geo-points.png
720
+ - vendor/local/share/doc/groonga/source/tutorial/introduction.txt
721
+ - vendor/local/share/doc/groonga/source/news.txt
722
+ - vendor/local/share/doc/groonga/source/suggest.txt
723
+ - vendor/local/share/doc/groonga/source/install.txt
724
+ - vendor/local/share/doc/groonga/source/development.txt
725
+ - vendor/local/share/doc/groonga/source/tutorial.txt
726
+ - vendor/local/share/doc/groonga/source/community.txt
727
+ - vendor/local/share/doc/groonga/source/suggest/suggestion.txt
728
+ - vendor/local/share/doc/groonga/source/suggest/tutorial.txt
729
+ - vendor/local/share/doc/groonga/source/suggest/correction.txt
730
+ - vendor/local/share/doc/groonga/source/suggest/completion.txt
731
+ - vendor/local/share/doc/groonga/source/suggest/introduction.txt
732
+ - vendor/local/share/doc/groonga/source/spec.txt
733
+ - vendor/local/share/doc/groonga/source/contribution/development/com.txt
734
+ - vendor/local/share/doc/groonga/source/contribution/development/document.txt
735
+ - vendor/local/share/doc/groonga/source/contribution/development/query.txt
736
+ - vendor/local/share/doc/groonga/source/contribution/development/release.txt
737
+ - vendor/local/share/doc/groonga/source/contribution/development/test.txt
738
+ - vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt
739
+ - vendor/local/share/doc/groonga/source/contribution/documentation/c-api.txt
740
+ - vendor/local/share/doc/groonga/source/contribution/development.txt
741
+ - vendor/local/share/doc/groonga/source/contribution/report.txt
742
+ - vendor/local/share/doc/groonga/source/contribution/documentation.txt
743
+ - vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png
744
+ - vendor/local/share/doc/groonga/source/images/geo-points-sort.png
745
+ - vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png
746
+ - vendor/local/share/doc/groonga/source/images/geo-points-distance.svg
747
+ - vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg
729
748
  - vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.svg
730
- - vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg
731
- - vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png
749
+ - vendor/local/share/doc/groonga/source/images/geo-points.svg
750
+ - vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png
751
+ - vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png
752
+ - vendor/local/share/doc/groonga/source/images/geo-points.png
753
+ - vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg
754
+ - vendor/local/share/doc/groonga/source/images/geo-points-distance.png
732
755
  - vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.png
733
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png
734
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg
735
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg
736
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png
756
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png
757
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg
758
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png
737
759
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.svg
738
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg
739
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png
740
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png
741
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png
742
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png
743
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg
744
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg
745
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png
746
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png
747
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg
748
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg
749
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg
750
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png
751
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png
752
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg
753
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png
754
760
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.png
755
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg
756
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png
757
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg
758
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg
759
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg
760
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg
761
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png
762
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png
763
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg
764
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg
765
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png
766
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg
767
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg
768
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png
761
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png
769
762
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.svg
763
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png
770
764
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.png
771
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png
765
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg
766
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg
767
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg
768
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png
772
769
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.png
773
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg
774
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg
775
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png
770
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png
771
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg
772
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg
776
773
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.svg
777
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg
774
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg
775
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg
776
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg
777
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg
778
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png
779
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png
780
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png
781
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png
782
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png
783
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg
784
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg
785
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png
786
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg
787
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg
788
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png
778
789
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.svg
779
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png
790
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg
791
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png
780
792
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.svg
793
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg
794
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png
781
795
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.svg
782
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png
783
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg
784
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png
785
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png
786
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png
787
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png
788
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png
789
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png
796
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png
797
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg
798
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png
790
799
  - vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.png
791
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg
792
- - vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg
793
- - vendor/local/share/doc/groonga/source/images/geo-points.svg
794
- - vendor/local/share/doc/groonga/source/images/geo-points-distance.png
795
- - vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg
796
- - vendor/local/share/doc/groonga/source/images/geo-points-sort.png
797
- - vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png
798
- - vendor/local/share/doc/groonga/source/images/geo-points-distance.svg
799
- - vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png
800
- - vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg
801
- - vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg
802
- - vendor/local/share/doc/groonga/source/images/geo-points-sort.svg
803
- - vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png
804
- - vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png
805
- - vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png
806
- - vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg
807
- - vendor/local/share/doc/groonga/source/contribution.txt
808
- - vendor/local/share/doc/groonga/source/conf.py
809
- - vendor/local/share/doc/groonga/source/tutorial.txt
810
- - vendor/local/share/doc/groonga/source/expr.txt
811
- - vendor/local/share/doc/groonga/source/commands_not_implemented/add.txt
812
- - vendor/local/share/doc/groonga/source/commands_not_implemented/get.txt
813
- - vendor/local/share/doc/groonga/source/commands_not_implemented/set.txt
814
- - vendor/local/share/doc/groonga/source/news/senna.txt
815
- - vendor/local/share/doc/groonga/source/news/1.1.x.txt
816
- - vendor/local/share/doc/groonga/source/news/0.x.txt
817
- - vendor/local/share/doc/groonga/source/news/1.0.x.txt
818
- - vendor/local/share/doc/groonga/source/news/1.2.x.txt
819
- - vendor/local/share/doc/groonga/source/characteristic.txt
820
- - vendor/local/share/doc/groonga/source/reference.txt
821
- - vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt
822
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log
823
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log
824
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log
825
- - vendor/local/share/doc/groonga/source/example/tutorial/search-5.log
826
- - vendor/local/share/doc/groonga/source/example/tutorial/index-7.log
827
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log
828
- - vendor/local/share/doc/groonga/source/example/tutorial/index-5.log
829
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log
830
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log
831
- - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log
832
- - vendor/local/share/doc/groonga/source/example/tutorial/data-6.log
833
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log
834
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log
835
- - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log
836
- - vendor/local/share/doc/groonga/source/example/tutorial/search-1.log
837
- - vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log
838
- - vendor/local/share/doc/groonga/source/example/tutorial/network-1.log
839
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log
840
- - vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log
841
- - vendor/local/share/doc/groonga/source/example/tutorial/data-2.log
842
- - vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log
843
- - vendor/local/share/doc/groonga/source/example/tutorial/data-3.log
844
- - vendor/local/share/doc/groonga/source/example/tutorial/data-1.log
845
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log
846
- - vendor/local/share/doc/groonga/source/example/tutorial/search-3.log
847
- - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log
848
- - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log
849
- - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log
850
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log
851
- - vendor/local/share/doc/groonga/source/example/tutorial/search-2.log
852
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log
853
- - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log
854
- - vendor/local/share/doc/groonga/source/example/tutorial/network-3.log
855
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log
856
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log
857
- - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log
858
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log
859
- - vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log
860
- - vendor/local/share/doc/groonga/source/example/tutorial/data-8.log
861
- - vendor/local/share/doc/groonga/source/example/tutorial/index-6.log
862
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log
863
- - vendor/local/share/doc/groonga/source/example/tutorial/index-1.log
864
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log
865
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log
866
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log
867
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log
868
- - vendor/local/share/doc/groonga/source/example/tutorial/search-7.log
869
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log
870
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log
871
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log
872
- - vendor/local/share/doc/groonga/source/example/tutorial/network-2.log
873
- - vendor/local/share/doc/groonga/source/example/tutorial/data-7.log
874
- - vendor/local/share/doc/groonga/source/example/tutorial/index-2.log
875
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log
876
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log
877
- - vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log
878
- - vendor/local/share/doc/groonga/source/example/tutorial/search-6.log
879
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log
880
- - vendor/local/share/doc/groonga/source/example/tutorial/data-4.log
881
- - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log
882
- - vendor/local/share/doc/groonga/source/example/tutorial/data-5.log
883
- - vendor/local/share/doc/groonga/source/example/tutorial/index-4.log
884
- - vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log
885
- - vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log
886
- - vendor/local/share/doc/groonga/source/example/tutorial/search-4.log
887
- - vendor/local/share/doc/groonga/source/example/tutorial/index-3.log
888
- - vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log
889
- - vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log
890
- - vendor/local/share/doc/groonga/source/example/correction-1.log
891
- - vendor/local/share/doc/groonga/source/example/suggestion-1.log
892
- - vendor/local/share/doc/groonga/source/example/completion-1.log
893
- - vendor/local/share/doc/groonga/source/functions.txt
800
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg
801
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg
802
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png
803
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png
804
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg
805
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png
806
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png
807
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg
808
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png
809
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg
810
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png
811
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png
812
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png
813
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg
814
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png
815
+ - vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg
816
+ - vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg
817
+ - vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png
818
+ - vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png
819
+ - vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg
820
+ - vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg
821
+ - vendor/local/share/doc/groonga/source/images/geo-points-sort.svg
894
822
  - vendor/local/share/doc/groonga/source/textile.py
895
- - vendor/local/share/doc/groonga/source/index.txt
896
- - vendor/local/share/doc/groonga/source/indexing.txt
897
- - vendor/local/share/doc/groonga/source/community.txt
898
- - vendor/local/share/doc/groonga/source/rdoc.py
899
- - vendor/local/share/doc/groonga/source/command_version.txt
900
- - vendor/local/share/doc/groonga/source/news.txt
901
- - vendor/local/share/doc/groonga/source/pseudo_column.txt
902
- - vendor/local/share/doc/groonga/source/contribution/development.txt
903
- - vendor/local/share/doc/groonga/source/contribution/report.txt
904
- - vendor/local/share/doc/groonga/source/contribution/development/com.txt
905
- - vendor/local/share/doc/groonga/source/contribution/development/query.txt
906
- - vendor/local/share/doc/groonga/source/contribution/development/test.txt
907
- - vendor/local/share/doc/groonga/source/contribution/development/document.txt
908
- - vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt
909
- - vendor/local/share/doc/groonga/source/contribution/documentation/c-api.txt
910
- - vendor/local/share/doc/groonga/source/contribution/documentation.txt
911
- - vendor/local/share/doc/groonga/source/commands/table_list.txt
912
- - vendor/local/share/doc/groonga/source/commands/define_selector.txt
913
- - vendor/local/share/doc/groonga/source/commands/log_put.txt
914
- - vendor/local/share/doc/groonga/source/commands/view_add.txt
915
- - vendor/local/share/doc/groonga/source/commands/suggest-completion.log
916
- - vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log
917
- - vendor/local/share/doc/groonga/source/commands/shutdown.txt
918
- - vendor/local/share/doc/groonga/source/commands/cache_limit.txt
919
- - vendor/local/share/doc/groonga/source/commands/check.txt
920
- - vendor/local/share/doc/groonga/source/commands/delete.txt
921
- - vendor/local/share/doc/groonga/source/commands/select.txt
922
- - vendor/local/share/doc/groonga/source/commands/column_create.txt
923
- - vendor/local/share/doc/groonga/source/commands/log_level.txt
924
- - vendor/local/share/doc/groonga/source/commands/table_remove.txt
925
- - vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log
926
- - vendor/local/share/doc/groonga/source/commands/suggest-correction.log
927
- - vendor/local/share/doc/groonga/source/commands/clearlock.txt
928
- - vendor/local/share/doc/groonga/source/commands/load.txt
929
- - vendor/local/share/doc/groonga/source/commands/column_remove.txt
930
- - vendor/local/share/doc/groonga/source/commands/dump.txt
931
- - vendor/local/share/doc/groonga/source/commands/quit.txt
932
- - vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log
933
- - vendor/local/share/doc/groonga/source/commands/suggest-mixed.log
934
- - vendor/local/share/doc/groonga/source/commands/defrag.txt
935
- - vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log
936
- - vendor/local/share/doc/groonga/source/commands/log_reopen.txt
937
- - vendor/local/share/doc/groonga/source/commands/table_create.txt
938
- - vendor/local/share/doc/groonga/source/commands/status.txt
939
- - vendor/local/share/doc/groonga/source/commands/suggest.txt
940
- - vendor/local/share/doc/groonga/source/commands/column_list.txt
941
- - vendor/local/share/doc/groonga/source/executables/groonga-http.txt
942
- - vendor/local/share/doc/groonga/source/executables/grntest.txt
943
- - vendor/local/share/doc/groonga/source/executables/groonga-suggest-create-dataset.txt
944
- - vendor/local/share/doc/groonga/source/executables/grnslap.txt
945
- - vendor/local/share/doc/groonga/source/executables/groonga.txt
946
- - vendor/local/share/doc/groonga/source/executables.txt
823
+ - vendor/local/share/doc/groonga/source/news/0.x.txt
824
+ - vendor/local/share/doc/groonga/source/news/1.1.x.txt
825
+ - vendor/local/share/doc/groonga/source/news/1.0.x.txt
826
+ - vendor/local/share/doc/groonga/source/news/senna.txt
827
+ - vendor/local/share/doc/groonga/source/news/1.2.x.txt
947
828
  - vendor/local/share/doc/groonga/source/spec/search.txt
829
+ - vendor/local/share/doc/groonga/source/reference.txt
830
+ - vendor/local/share/doc/groonga/source/characteristic.txt
948
831
  - vendor/local/share/doc/groonga/source/__init__.py
949
- - vendor/local/share/doc/groonga/source/troubleshooting.txt
950
- - vendor/local/share/doc/groonga/source/suggest.txt
951
- - vendor/local/share/doc/groonga/source/log.txt
952
- - vendor/local/share/doc/groonga/source/install.txt
953
- - vendor/local/share/doc/groonga/source/suggest/correction.txt
954
- - vendor/local/share/doc/groonga/source/suggest/suggestion.txt
955
- - vendor/local/share/doc/groonga/source/suggest/tutorial.txt
956
- - vendor/local/share/doc/groonga/source/suggest/completion.txt
957
- - vendor/local/share/doc/groonga/source/suggest/introduction.txt
958
- - vendor/local/share/doc/groonga/source/functions/edit_distance.txt
959
- - vendor/local/share/doc/groonga/source/functions/geo_in_circle.txt
960
- - vendor/local/share/doc/groonga/source/functions/rand.txt
961
- - vendor/local/share/doc/groonga/source/functions/now.txt
962
- - vendor/local/share/doc/groonga/source/functions/geo_in_rectangle.txt
963
- - vendor/local/share/doc/groonga/source/functions/geo_distance.txt
964
- - vendor/local/share/doc/groonga/source/type.txt
965
- - vendor/local/share/doc/groonga/source/spec.txt
966
- - vendor/local/share/man/man1/mecab.1
967
- - vendor/local/share/man/man1/groonga.1
832
+ - vendor/local/share/doc/groonga/ja/html/development.html
833
+ - vendor/local/share/doc/groonga/ja/html/install/others.html
834
+ - vendor/local/share/doc/groonga/ja/html/install/solaris.html
835
+ - vendor/local/share/doc/groonga/ja/html/install/centos.html
836
+ - vendor/local/share/doc/groonga/ja/html/install/fedora.html
837
+ - vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html
838
+ - vendor/local/share/doc/groonga/ja/html/install/windows.html
839
+ - vendor/local/share/doc/groonga/ja/html/install/ubuntu.html
840
+ - vendor/local/share/doc/groonga/ja/html/install/debian.html
841
+ - vendor/local/share/doc/groonga/ja/html/reference/output.html
842
+ - vendor/local/share/doc/groonga/ja/html/reference/api.html
843
+ - vendor/local/share/doc/groonga/ja/html/reference/log.html
844
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html
845
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html
846
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html
847
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/view_add.html
848
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html
849
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html
850
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html
851
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html
852
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html
853
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html
854
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html
855
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html
856
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html
857
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/status.html
858
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/check.html
859
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html
860
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/select.html
861
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html
862
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html
863
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html
864
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/load.html
865
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html
866
+ - vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html
867
+ - vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html
868
+ - vendor/local/share/doc/groonga/ja/html/reference/executables.html
869
+ - vendor/local/share/doc/groonga/ja/html/reference/commands.html
870
+ - vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
871
+ - vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
872
+ - vendor/local/share/doc/groonga/ja/html/reference/type.html
873
+ - vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html
874
+ - vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html
875
+ - vendor/local/share/doc/groonga/ja/html/reference/functions/now.html
876
+ - vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html
877
+ - vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html
878
+ - vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html
879
+ - vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html
880
+ - vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html
881
+ - vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html
882
+ - vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html
883
+ - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html
884
+ - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html
885
+ - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html
886
+ - vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html
887
+ - vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html
888
+ - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html
889
+ - vendor/local/share/doc/groonga/ja/html/reference/functions.html
890
+ - vendor/local/share/doc/groonga/ja/html/reference/indexing.html
891
+ - vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html
892
+ - vendor/local/share/doc/groonga/ja/html/reference/cast.html
893
+ - vendor/local/share/doc/groonga/ja/html/reference/command_version.html
894
+ - vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html
895
+ - vendor/local/share/doc/groonga/ja/html/server/gqtp.html
896
+ - vendor/local/share/doc/groonga/ja/html/server/http.html
897
+ - vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html
898
+ - vendor/local/share/doc/groonga/ja/html/server/http/comparison.html
899
+ - vendor/local/share/doc/groonga/ja/html/server/http/groonga.html
900
+ - vendor/local/share/doc/groonga/ja/html/troubleshooting.html
901
+ - vendor/local/share/doc/groonga/ja/html/development/travis-ci.html
902
+ - vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html
903
+ - vendor/local/share/doc/groonga/ja/html/objects.inv
904
+ - vendor/local/share/doc/groonga/ja/html/genindex.html
905
+ - vendor/local/share/doc/groonga/ja/html/spec.html
906
+ - vendor/local/share/doc/groonga/ja/html/reference.html
907
+ - vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html
908
+ - vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html
909
+ - vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html
910
+ - vendor/local/share/doc/groonga/ja/html/tutorial/data.html
911
+ - vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html
912
+ - vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html
913
+ - vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html
914
+ - vendor/local/share/doc/groonga/ja/html/tutorial/index.html
915
+ - vendor/local/share/doc/groonga/ja/html/tutorial/search.html
916
+ - vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html
917
+ - vendor/local/share/doc/groonga/ja/html/tutorial/network.html
918
+ - vendor/local/share/doc/groonga/ja/html/index.html
919
+ - vendor/local/share/doc/groonga/ja/html/searchindex.js
920
+ - vendor/local/share/doc/groonga/ja/html/news.html
921
+ - vendor/local/share/doc/groonga/ja/html/limitations.html
922
+ - vendor/local/share/doc/groonga/ja/html/tutorial.html
923
+ - vendor/local/share/doc/groonga/ja/html/suggest.html
924
+ - vendor/local/share/doc/groonga/ja/html/characteristic.html
925
+ - vendor/local/share/doc/groonga/ja/html/suggest/introduction.html
926
+ - vendor/local/share/doc/groonga/ja/html/suggest/correction.html
927
+ - vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html
928
+ - vendor/local/share/doc/groonga/ja/html/suggest/completion.html
929
+ - vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html
930
+ - vendor/local/share/doc/groonga/ja/html/contribution/development.html
931
+ - vendor/local/share/doc/groonga/ja/html/contribution/development/query.html
932
+ - vendor/local/share/doc/groonga/ja/html/contribution/development/release.html
933
+ - vendor/local/share/doc/groonga/ja/html/contribution/development/test.html
934
+ - vendor/local/share/doc/groonga/ja/html/contribution/development/com.html
935
+ - vendor/local/share/doc/groonga/ja/html/contribution/development/document.html
936
+ - vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html
937
+ - vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html
938
+ - vendor/local/share/doc/groonga/ja/html/contribution/documentation.html
939
+ - vendor/local/share/doc/groonga/ja/html/contribution/report.html
940
+ - vendor/local/share/doc/groonga/ja/html/geolocation_search.html
941
+ - vendor/local/share/doc/groonga/ja/html/search.html
942
+ - vendor/local/share/doc/groonga/ja/html/news/senna.html
943
+ - vendor/local/share/doc/groonga/ja/html/news/1.0.x.html
944
+ - vendor/local/share/doc/groonga/ja/html/news/0.x.html
945
+ - vendor/local/share/doc/groonga/ja/html/news/1.1.x.html
946
+ - vendor/local/share/doc/groonga/ja/html/news/1.2.x.html
947
+ - vendor/local/share/doc/groonga/ja/html/contribution.html
948
+ - vendor/local/share/doc/groonga/ja/html/spec/search.html
949
+ - vendor/local/share/doc/groonga/ja/html/.buildinfo
950
+ - vendor/local/share/doc/groonga/ja/html/install.html
951
+ - vendor/local/share/doc/groonga/ja/html/community.html
952
+ - vendor/local/share/doc/groonga/ja/html/_images/geo-points.png
953
+ - vendor/local/share/doc/groonga/ja/html/server.html
954
+ - vendor/local/share/doc/groonga/ja/html/_sources/index.txt
955
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt
956
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt
957
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt
958
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt
959
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt
960
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt
961
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt
962
+ - vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt
963
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt
964
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt
965
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt
966
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt
967
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt
968
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt
969
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt
970
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt
971
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt
972
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt
973
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt
974
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt
975
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt
976
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt
977
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt
978
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt
979
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt
980
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt
981
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt
982
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt
983
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt
984
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt
985
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt
986
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/view_add.txt
987
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt
988
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt
989
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/pseudo_column.txt
990
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt
991
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions.txt
992
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
993
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands.txt
994
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
995
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
996
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt
997
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/now.txt
998
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt
999
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_in_circle.txt
1000
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_in_rectangle.txt
1001
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
1002
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt
1003
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/set.txt
1004
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/get.txt
1005
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/add.txt
1006
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/log.txt
1007
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/output.txt
1008
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-create-dataset.txt
1009
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt
1010
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-server-http.txt
1011
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt
1012
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grntest.txt
1013
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt
1014
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/command_version.txt
1015
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables.txt
1016
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference/type.txt
1017
+ - vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt
1018
+ - vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt
1019
+ - vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt
1020
+ - vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt
1021
+ - vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
1022
+ - vendor/local/share/doc/groonga/ja/html/_sources/server.txt
1023
+ - vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt
1024
+ - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
1025
+ - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting.txt
1026
+ - vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt
1027
+ - vendor/local/share/doc/groonga/ja/html/_sources/geolocation_search.txt
1028
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt
1029
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt
1030
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt
1031
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt
1032
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt
1033
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt
1034
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt
1035
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt
1036
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt
1037
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt
1038
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt
1039
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt
1040
+ - vendor/local/share/doc/groonga/ja/html/_sources/news.txt
1041
+ - vendor/local/share/doc/groonga/ja/html/_sources/suggest.txt
1042
+ - vendor/local/share/doc/groonga/ja/html/_sources/install.txt
1043
+ - vendor/local/share/doc/groonga/ja/html/_sources/development.txt
1044
+ - vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt
1045
+ - vendor/local/share/doc/groonga/ja/html/_sources/community.txt
1046
+ - vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt
1047
+ - vendor/local/share/doc/groonga/ja/html/_sources/suggest/tutorial.txt
1048
+ - vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt
1049
+ - vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt
1050
+ - vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt
1051
+ - vendor/local/share/doc/groonga/ja/html/_sources/spec.txt
1052
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/com.txt
1053
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt
1054
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/query.txt
1055
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt
1056
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt
1057
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt
1058
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/c-api.txt
1059
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt
1060
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt
1061
+ - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt
1062
+ - vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt
1063
+ - vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt
1064
+ - vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt
1065
+ - vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt
1066
+ - vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt
1067
+ - vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt
1068
+ - vendor/local/share/doc/groonga/ja/html/_sources/reference.txt
1069
+ - vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt
1070
+ - vendor/local/share/doc/groonga/ja/html/_static/file.png
1071
+ - vendor/local/share/doc/groonga/ja/html/_static/basic.css
1072
+ - vendor/local/share/doc/groonga/ja/html/_static/websupport.js
1073
+ - vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png
1074
+ - vendor/local/share/doc/groonga/ja/html/_static/favicon.ico
1075
+ - vendor/local/share/doc/groonga/ja/html/_static/doctools.js
1076
+ - vendor/local/share/doc/groonga/ja/html/_static/navigation-bar.png
1077
+ - vendor/local/share/doc/groonga/ja/html/_static/comment-close.png
1078
+ - vendor/local/share/doc/groonga/ja/html/_static/underscore.js
1079
+ - vendor/local/share/doc/groonga/ja/html/_static/us.png
1080
+ - vendor/local/share/doc/groonga/ja/html/_static/logo.png
1081
+ - vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif
1082
+ - vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png
1083
+ - vendor/local/share/doc/groonga/ja/html/_static/header-background.png
1084
+ - vendor/local/share/doc/groonga/ja/html/_static/comment.png
1085
+ - vendor/local/share/doc/groonga/ja/html/_static/searchtools.js
1086
+ - vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png
1087
+ - vendor/local/share/doc/groonga/ja/html/_static/down.png
1088
+ - vendor/local/share/doc/groonga/ja/html/_static/jquery.js
1089
+ - vendor/local/share/doc/groonga/ja/html/_static/plus.png
1090
+ - vendor/local/share/doc/groonga/ja/html/_static/minus.png
1091
+ - vendor/local/share/doc/groonga/ja/html/_static/jp.png
1092
+ - vendor/local/share/doc/groonga/ja/html/_static/groonga.css
1093
+ - vendor/local/share/doc/groonga/ja/html/_static/up.png
1094
+ - vendor/local/share/doc/groonga/ja/html/_static/pygments.css
1095
+ - vendor/local/share/doc/groonga/en/html/development.html
1096
+ - vendor/local/share/doc/groonga/en/html/install/others.html
1097
+ - vendor/local/share/doc/groonga/en/html/install/solaris.html
1098
+ - vendor/local/share/doc/groonga/en/html/install/centos.html
1099
+ - vendor/local/share/doc/groonga/en/html/install/fedora.html
1100
+ - vendor/local/share/doc/groonga/en/html/install/mac_os_x.html
1101
+ - vendor/local/share/doc/groonga/en/html/install/windows.html
1102
+ - vendor/local/share/doc/groonga/en/html/install/ubuntu.html
1103
+ - vendor/local/share/doc/groonga/en/html/install/debian.html
1104
+ - vendor/local/share/doc/groonga/en/html/reference/output.html
1105
+ - vendor/local/share/doc/groonga/en/html/reference/api.html
1106
+ - vendor/local/share/doc/groonga/en/html/reference/log.html
1107
+ - vendor/local/share/doc/groonga/en/html/reference/commands/dump.html
1108
+ - vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html
1109
+ - vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html
1110
+ - vendor/local/share/doc/groonga/en/html/reference/commands/view_add.html
1111
+ - vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html
1112
+ - vendor/local/share/doc/groonga/en/html/reference/commands/delete.html
1113
+ - vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html
1114
+ - vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html
1115
+ - vendor/local/share/doc/groonga/en/html/reference/commands/quit.html
1116
+ - vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html
1117
+ - vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html
1118
+ - vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html
1119
+ - vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html
1120
+ - vendor/local/share/doc/groonga/en/html/reference/commands/status.html
1121
+ - vendor/local/share/doc/groonga/en/html/reference/commands/check.html
1122
+ - vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html
1123
+ - vendor/local/share/doc/groonga/en/html/reference/commands/select.html
1124
+ - vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html
1125
+ - vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html
1126
+ - vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html
1127
+ - vendor/local/share/doc/groonga/en/html/reference/commands/load.html
1128
+ - vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html
1129
+ - vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html
1130
+ - vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html
1131
+ - vendor/local/share/doc/groonga/en/html/reference/executables.html
1132
+ - vendor/local/share/doc/groonga/en/html/reference/commands.html
1133
+ - vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
1134
+ - vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
1135
+ - vendor/local/share/doc/groonga/en/html/reference/type.html
1136
+ - vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html
1137
+ - vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html
1138
+ - vendor/local/share/doc/groonga/en/html/reference/functions/now.html
1139
+ - vendor/local/share/doc/groonga/en/html/reference/functions/rand.html
1140
+ - vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html
1141
+ - vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html
1142
+ - vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html
1143
+ - vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html
1144
+ - vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html
1145
+ - vendor/local/share/doc/groonga/en/html/reference/grn_expr.html
1146
+ - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html
1147
+ - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html
1148
+ - vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html
1149
+ - vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html
1150
+ - vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html
1151
+ - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html
1152
+ - vendor/local/share/doc/groonga/en/html/reference/functions.html
1153
+ - vendor/local/share/doc/groonga/en/html/reference/indexing.html
1154
+ - vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html
1155
+ - vendor/local/share/doc/groonga/en/html/reference/cast.html
1156
+ - vendor/local/share/doc/groonga/en/html/reference/command_version.html
1157
+ - vendor/local/share/doc/groonga/en/html/reference/tokenizers.html
1158
+ - vendor/local/share/doc/groonga/en/html/server/gqtp.html
1159
+ - vendor/local/share/doc/groonga/en/html/server/http.html
1160
+ - vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html
1161
+ - vendor/local/share/doc/groonga/en/html/server/http/comparison.html
1162
+ - vendor/local/share/doc/groonga/en/html/server/http/groonga.html
1163
+ - vendor/local/share/doc/groonga/en/html/troubleshooting.html
1164
+ - vendor/local/share/doc/groonga/en/html/development/travis-ci.html
1165
+ - vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html
1166
+ - vendor/local/share/doc/groonga/en/html/objects.inv
1167
+ - vendor/local/share/doc/groonga/en/html/genindex.html
1168
+ - vendor/local/share/doc/groonga/en/html/spec.html
1169
+ - vendor/local/share/doc/groonga/en/html/reference.html
1170
+ - vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html
1171
+ - vendor/local/share/doc/groonga/en/html/tutorial/introduction.html
1172
+ - vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html
1173
+ - vendor/local/share/doc/groonga/en/html/tutorial/data.html
1174
+ - vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html
1175
+ - vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html
1176
+ - vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html
1177
+ - vendor/local/share/doc/groonga/en/html/tutorial/index.html
1178
+ - vendor/local/share/doc/groonga/en/html/tutorial/search.html
1179
+ - vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html
1180
+ - vendor/local/share/doc/groonga/en/html/tutorial/network.html
1181
+ - vendor/local/share/doc/groonga/en/html/index.html
1182
+ - vendor/local/share/doc/groonga/en/html/searchindex.js
1183
+ - vendor/local/share/doc/groonga/en/html/news.html
1184
+ - vendor/local/share/doc/groonga/en/html/limitations.html
1185
+ - vendor/local/share/doc/groonga/en/html/tutorial.html
1186
+ - vendor/local/share/doc/groonga/en/html/suggest.html
1187
+ - vendor/local/share/doc/groonga/en/html/characteristic.html
1188
+ - vendor/local/share/doc/groonga/en/html/suggest/introduction.html
1189
+ - vendor/local/share/doc/groonga/en/html/suggest/correction.html
1190
+ - vendor/local/share/doc/groonga/en/html/suggest/suggestion.html
1191
+ - vendor/local/share/doc/groonga/en/html/suggest/completion.html
1192
+ - vendor/local/share/doc/groonga/en/html/suggest/tutorial.html
1193
+ - vendor/local/share/doc/groonga/en/html/contribution/development.html
1194
+ - vendor/local/share/doc/groonga/en/html/contribution/development/query.html
1195
+ - vendor/local/share/doc/groonga/en/html/contribution/development/release.html
1196
+ - vendor/local/share/doc/groonga/en/html/contribution/development/test.html
1197
+ - vendor/local/share/doc/groonga/en/html/contribution/development/com.html
1198
+ - vendor/local/share/doc/groonga/en/html/contribution/development/document.html
1199
+ - vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html
1200
+ - vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html
1201
+ - vendor/local/share/doc/groonga/en/html/contribution/documentation.html
1202
+ - vendor/local/share/doc/groonga/en/html/contribution/report.html
1203
+ - vendor/local/share/doc/groonga/en/html/geolocation_search.html
1204
+ - vendor/local/share/doc/groonga/en/html/search.html
1205
+ - vendor/local/share/doc/groonga/en/html/news/senna.html
1206
+ - vendor/local/share/doc/groonga/en/html/news/1.0.x.html
1207
+ - vendor/local/share/doc/groonga/en/html/news/0.x.html
1208
+ - vendor/local/share/doc/groonga/en/html/news/1.1.x.html
1209
+ - vendor/local/share/doc/groonga/en/html/news/1.2.x.html
1210
+ - vendor/local/share/doc/groonga/en/html/contribution.html
1211
+ - vendor/local/share/doc/groonga/en/html/spec/search.html
1212
+ - vendor/local/share/doc/groonga/en/html/.buildinfo
1213
+ - vendor/local/share/doc/groonga/en/html/install.html
1214
+ - vendor/local/share/doc/groonga/en/html/community.html
1215
+ - vendor/local/share/doc/groonga/en/html/_images/geo-points.png
1216
+ - vendor/local/share/doc/groonga/en/html/server.html
1217
+ - vendor/local/share/doc/groonga/en/html/_sources/index.txt
1218
+ - vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt
1219
+ - vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt
1220
+ - vendor/local/share/doc/groonga/en/html/_sources/install/others.txt
1221
+ - vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt
1222
+ - vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt
1223
+ - vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt
1224
+ - vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt
1225
+ - vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt
1226
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt
1227
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt
1228
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt
1229
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt
1230
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt
1231
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt
1232
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt
1233
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt
1234
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt
1235
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt
1236
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt
1237
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt
1238
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt
1239
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt
1240
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt
1241
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt
1242
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt
1243
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt
1244
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt
1245
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt
1246
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt
1247
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt
1248
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt
1249
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/view_add.txt
1250
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt
1251
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt
1252
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/pseudo_column.txt
1253
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt
1254
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions.txt
1255
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt
1256
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands.txt
1257
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
1258
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
1259
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt
1260
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/now.txt
1261
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt
1262
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_in_circle.txt
1263
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_in_rectangle.txt
1264
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/rand.txt
1265
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt
1266
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands_not_implemented/set.txt
1267
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands_not_implemented/get.txt
1268
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/commands_not_implemented/add.txt
1269
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/log.txt
1270
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/output.txt
1271
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-create-dataset.txt
1272
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt
1273
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-server-http.txt
1274
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt
1275
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grntest.txt
1276
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt
1277
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/command_version.txt
1278
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/executables.txt
1279
+ - vendor/local/share/doc/groonga/en/html/_sources/reference/type.txt
1280
+ - vendor/local/share/doc/groonga/en/html/_sources/server/http.txt
1281
+ - vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt
1282
+ - vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt
1283
+ - vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt
1284
+ - vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
1285
+ - vendor/local/share/doc/groonga/en/html/_sources/server.txt
1286
+ - vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt
1287
+ - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
1288
+ - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting.txt
1289
+ - vendor/local/share/doc/groonga/en/html/_sources/limitations.txt
1290
+ - vendor/local/share/doc/groonga/en/html/_sources/geolocation_search.txt
1291
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution.txt
1292
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt
1293
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt
1294
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/lexicon.txt
1295
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt
1296
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt
1297
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt
1298
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt
1299
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt
1300
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt
1301
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt
1302
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt
1303
+ - vendor/local/share/doc/groonga/en/html/_sources/news.txt
1304
+ - vendor/local/share/doc/groonga/en/html/_sources/suggest.txt
1305
+ - vendor/local/share/doc/groonga/en/html/_sources/install.txt
1306
+ - vendor/local/share/doc/groonga/en/html/_sources/development.txt
1307
+ - vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt
1308
+ - vendor/local/share/doc/groonga/en/html/_sources/community.txt
1309
+ - vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt
1310
+ - vendor/local/share/doc/groonga/en/html/_sources/suggest/tutorial.txt
1311
+ - vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt
1312
+ - vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt
1313
+ - vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt
1314
+ - vendor/local/share/doc/groonga/en/html/_sources/spec.txt
1315
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/com.txt
1316
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt
1317
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/query.txt
1318
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt
1319
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt
1320
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt
1321
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/c-api.txt
1322
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt
1323
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt
1324
+ - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt
1325
+ - vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt
1326
+ - vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt
1327
+ - vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt
1328
+ - vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt
1329
+ - vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt
1330
+ - vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt
1331
+ - vendor/local/share/doc/groonga/en/html/_sources/reference.txt
1332
+ - vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt
1333
+ - vendor/local/share/doc/groonga/en/html/_static/file.png
1334
+ - vendor/local/share/doc/groonga/en/html/_static/basic.css
1335
+ - vendor/local/share/doc/groonga/en/html/_static/websupport.js
1336
+ - vendor/local/share/doc/groonga/en/html/_static/comment-bright.png
1337
+ - vendor/local/share/doc/groonga/en/html/_static/favicon.ico
1338
+ - vendor/local/share/doc/groonga/en/html/_static/doctools.js
1339
+ - vendor/local/share/doc/groonga/en/html/_static/navigation-bar.png
1340
+ - vendor/local/share/doc/groonga/en/html/_static/comment-close.png
1341
+ - vendor/local/share/doc/groonga/en/html/_static/underscore.js
1342
+ - vendor/local/share/doc/groonga/en/html/_static/us.png
1343
+ - vendor/local/share/doc/groonga/en/html/_static/logo.png
1344
+ - vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif
1345
+ - vendor/local/share/doc/groonga/en/html/_static/down-pressed.png
1346
+ - vendor/local/share/doc/groonga/en/html/_static/header-background.png
1347
+ - vendor/local/share/doc/groonga/en/html/_static/comment.png
1348
+ - vendor/local/share/doc/groonga/en/html/_static/searchtools.js
1349
+ - vendor/local/share/doc/groonga/en/html/_static/up-pressed.png
1350
+ - vendor/local/share/doc/groonga/en/html/_static/down.png
1351
+ - vendor/local/share/doc/groonga/en/html/_static/jquery.js
1352
+ - vendor/local/share/doc/groonga/en/html/_static/plus.png
1353
+ - vendor/local/share/doc/groonga/en/html/_static/minus.png
1354
+ - vendor/local/share/doc/groonga/en/html/_static/jp.png
1355
+ - vendor/local/share/doc/groonga/en/html/_static/groonga.css
1356
+ - vendor/local/share/doc/groonga/en/html/_static/up.png
1357
+ - vendor/local/share/doc/groonga/en/html/_static/pygments.css
968
1358
  - vendor/local/share/man/ja/man1/groonga.1
969
- - vendor/local/share/groonga/images/logo/nroonga-logo-foreground-white.png
970
- - vendor/local/share/groonga/images/logo/nroonga-icon.png
971
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner.svg
972
- - vendor/local/share/groonga/images/logo/rroonga-icon-foreground-white.png
973
- - vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.png
974
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-large.png
975
- - vendor/local/share/groonga/images/logo/rroonga-icon.png
976
- - vendor/local/share/groonga/images/logo/nroonga-logo-foreground-white.svg
977
- - vendor/local/share/groonga/images/logo/nroonga-icon-full-size.svg
978
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.png
979
- - vendor/local/share/groonga/images/logo/groonga-icon-full-size.svg
980
- - vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.png
981
- - vendor/local/share/groonga/images/logo/mroonga-icon-full-size.png
982
- - vendor/local/share/groonga/images/logo/mroonga-icon-foreground-white.png
983
- - vendor/local/share/groonga/images/logo/rroonga-logo.svg
984
- - vendor/local/share/groonga/images/logo/rroonga-icon-foreground-white.svg
985
- - vendor/local/share/groonga/images/logo/mroonga-logo.svg
986
- - vendor/local/share/groonga/images/logo/groonga-icon.png
987
- - vendor/local/share/groonga/images/logo/mroonga-icon-full-size.svg
988
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.png
989
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-large.svg
990
- - vendor/local/share/groonga/images/logo/rroonga-icon-full-size.svg
991
- - vendor/local/share/groonga/images/logo/rroonga-icon-full-size.png
992
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.svg
993
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.svg
994
- - vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.png
995
- - vendor/local/share/groonga/images/logo/mroonga-icon-foreground-white.svg
996
- - vendor/local/share/groonga/images/logo/nroonga-icon.svg
997
- - vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.png
998
- - vendor/local/share/groonga/images/logo/groonga-logo.svg
999
- - vendor/local/share/groonga/images/logo/nroonga-logo.svg
1000
- - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.svg
1001
- - vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.svg
1002
- - vendor/local/share/groonga/images/logo/mroonga-icon.png
1003
- - vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.svg
1004
- - vendor/local/share/groonga/images/logo/nroonga-logo.png
1005
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner.png
1006
- - vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.svg
1007
- - vendor/local/share/groonga/images/logo/mroonga-icon.svg
1008
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.svg
1009
- - vendor/local/share/groonga/images/logo/groonga-logo.png
1010
- - vendor/local/share/groonga/images/logo/nroonga-icon-full-size.png
1011
- - vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.png
1012
- - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.png
1013
- - vendor/local/share/groonga/images/logo/groonga-icon.svg
1014
- - vendor/local/share/groonga/images/logo/groonga-icon-full-size.png
1015
- - vendor/local/share/groonga/images/logo/rroonga-icon.svg
1016
- - vendor/local/share/groonga/images/logo/mroonga-logo.png
1017
- - vendor/local/share/groonga/images/logo/rroonga-logo.png
1018
- - vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.svg
1019
- - vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh
1020
- - vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
1021
- - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb
1022
- - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh
1023
- - vendor/local/share/groonga/examples/dictionary/html/index.html
1024
- - vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js
1025
- - vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js
1026
- - vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js
1027
- - vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css
1028
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
1029
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_888888_256x240.png
1030
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_454545_256x240.png
1031
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
1032
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_cd0a0a_256x240.png
1033
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
1034
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
1035
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_2e83ff_256x240.png
1036
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_222222_256x240.png
1037
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
1038
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
1039
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
1040
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
1041
- - vendor/local/share/groonga/examples/dictionary/html/css/smoothness/jquery-ui-1.8.12.custom.css
1042
- - vendor/local/share/groonga/examples/dictionary/init-db.sh
1043
- - vendor/local/share/groonga/examples/dictionary/readme.txt
1044
- - vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
1045
- - vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh
1046
- - vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb
1047
- - vendor/local/share/groonga/html/admin/images/groonga.svg
1048
- - vendor/local/share/groonga/html/admin/images/loading.gif
1049
- - vendor/local/share/groonga/html/admin/images/groonga.png
1050
- - vendor/local/share/groonga/html/admin/favicon.ico
1051
- - vendor/local/share/groonga/html/admin/favicon.png
1052
- - vendor/local/share/groonga/html/admin/index.html
1053
- - vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js
1054
- - vendor/local/share/groonga/html/admin/js/groonga-admin.js
1055
- - vendor/local/share/groonga/html/admin/js/jquery-1.7.2.min.js
1056
- - vendor/local/share/groonga/html/admin/js/jquery.flot.license.txt
1057
- - vendor/local/share/groonga/html/admin/js/jquery.flot-0.7.min.js
1058
- - vendor/local/share/groonga/html/admin/js/jquery-ui-1.8.18.custom.min.js
1059
- - vendor/local/share/groonga/html/admin/css/groonga-admin.css
1060
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png
1061
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
1062
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
1063
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png
1064
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_6da8d5_256x240.png
1065
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_cd0a0a_256x240.png
1066
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
1067
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
1068
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_2e83ff_256x240.png
1069
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
1070
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
1071
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png
1072
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
1073
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
1074
- - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_469bdd_256x240.png
1075
- - vendor/local/share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css
1076
- - vendor/local/share/groonga/html/admin/favicon.svg
1359
+ - vendor/local/share/man/man1/groonga.1
1360
+ - vendor/local/share/man/man1/mecab.1
1361
+ - vendor/local/bin/libstdc++-6.dll
1362
+ - vendor/local/bin/groonga-benchmark.exe
1363
+ - vendor/local/bin/mecab-config
1364
+ - vendor/local/bin/mecabrc
1365
+ - vendor/local/bin/libmecab-1.dll
1366
+ - vendor/local/bin/libmsgpack-3.dll
1367
+ - vendor/local/bin/libgcc_s_sjlj-1.dll
1368
+ - vendor/local/bin/groonga.exe
1369
+ - vendor/local/bin/libmsgpackc-2.dll
1370
+ - vendor/local/bin/libgroonga-0.dll
1371
+ - vendor/local/bin/mecab.exe
1372
+ - vendor/local/lib/libmsgpack.a
1373
+ - vendor/local/lib/libgroonga.la
1374
+ - vendor/local/lib/groonga/plugins/suggest/suggest.dll
1375
+ - vendor/local/lib/groonga/plugins/suggest/suggest.dll.a
1376
+ - vendor/local/lib/groonga/plugins/suggest/suggest.a
1377
+ - vendor/local/lib/groonga/plugins/suggest/suggest.la
1378
+ - vendor/local/lib/groonga/plugins/tokenizers/mecab.a
1379
+ - vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a
1380
+ - vendor/local/lib/groonga/plugins/tokenizers/mecab.dll
1381
+ - vendor/local/lib/groonga/plugins/tokenizers/mecab.la
1382
+ - vendor/local/lib/groonga/plugins/table/table.dll.a
1383
+ - vendor/local/lib/groonga/plugins/table/table.la
1384
+ - vendor/local/lib/groonga/plugins/table/table.a
1385
+ - vendor/local/lib/groonga/plugins/table/table.dll
1386
+ - vendor/local/lib/libgroonga.a
1387
+ - vendor/local/lib/libmsgpackc.dll.a
1388
+ - vendor/local/lib/libmecab.dll.a
1077
1389
  - vendor/local/lib/libmecab.la
1078
1390
  - vendor/local/lib/libmsgpackc.la
1079
- - vendor/local/lib/libgroonga.la
1080
- - vendor/local/lib/libmsgpack.dll.a
1081
1391
  - vendor/local/lib/libgroonga.dll.a
1082
- - vendor/local/lib/pkgconfig/groonga.pc
1083
- - vendor/local/lib/libmecab.a
1084
1392
  - vendor/local/lib/libmsgpackc.a
1085
- - vendor/local/lib/libmsgpackc.dll.a
1086
- - vendor/local/lib/libgroonga.a
1087
- - vendor/local/lib/libmsgpack.a
1088
1393
  - vendor/local/lib/libmsgpack.la
1089
- - vendor/local/lib/libmecab.dll.a
1090
- - vendor/local/lib/groonga/plugins/tokenizers/mecab.la
1091
- - vendor/local/lib/groonga/plugins/tokenizers/mecab.dll
1092
- - vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a
1093
- - vendor/local/lib/groonga/plugins/tokenizers/mecab.a
1094
- - vendor/local/lib/groonga/plugins/suggest/suggest.dll.a
1095
- - vendor/local/lib/groonga/plugins/suggest/suggest.dll
1096
- - vendor/local/lib/groonga/plugins/suggest/suggest.a
1097
- - vendor/local/lib/groonga/plugins/suggest/suggest.la
1098
- - vendor/local/libexec/mecab/mecab-system-eval.exe
1099
- - vendor/local/libexec/mecab/mecab-cost-train.exe
1100
- - vendor/local/libexec/mecab/mecab-dict-index.exe
1394
+ - vendor/local/lib/libmecab.a
1395
+ - vendor/local/lib/libmsgpack.dll.a
1396
+ - vendor/local/lib/pkgconfig/groonga.pc
1397
+ - vendor/local/etc/groonga/groonga.conf
1398
+ - vendor/local/etc/groonga/httpd/groonga-httpd.conf
1101
1399
  - vendor/local/libexec/mecab/mecab-test-gen.exe
1400
+ - vendor/local/libexec/mecab/mecab-dict-index.exe
1401
+ - vendor/local/libexec/mecab/mecab-cost-train.exe
1402
+ - vendor/local/libexec/mecab/mecab-system-eval.exe
1102
1403
  - vendor/local/libexec/mecab/mecab-dict-gen.exe
1103
- - vendor/local/include/msgpack.hpp
1104
1404
  - vendor/local/include/mecab.h
1405
+ - vendor/local/include/groonga/groonga/tokenizer.h
1406
+ - vendor/local/include/groonga/groonga/plugin.h
1407
+ - vendor/local/include/groonga/groonga.h
1408
+ - vendor/local/include/msgpack.hpp
1105
1409
  - vendor/local/include/msgpack.h
1106
- - vendor/local/include/msgpack/pack.h
1107
- - vendor/local/include/msgpack/type/vector.hpp
1108
- - vendor/local/include/msgpack/type/list.hpp
1109
- - vendor/local/include/msgpack/type/fixint.hpp
1410
+ - vendor/local/include/msgpack/zbuffer.hpp
1411
+ - vendor/local/include/msgpack/zone.hpp
1412
+ - vendor/local/include/msgpack/type.hpp
1413
+ - vendor/local/include/msgpack/pack_define.h
1414
+ - vendor/local/include/msgpack/pack_template.h
1415
+ - vendor/local/include/msgpack/sbuffer.hpp
1416
+ - vendor/local/include/msgpack/unpack.hpp
1417
+ - vendor/local/include/msgpack/zone.h
1418
+ - vendor/local/include/msgpack/vrefbuffer.h
1419
+ - vendor/local/include/msgpack/pack.hpp
1420
+ - vendor/local/include/msgpack/version.h
1421
+ - vendor/local/include/msgpack/unpack_template.h
1422
+ - vendor/local/include/msgpack/object.hpp
1423
+ - vendor/local/include/msgpack/object.h
1424
+ - vendor/local/include/msgpack/type/define.hpp
1110
1425
  - vendor/local/include/msgpack/type/bool.hpp
1111
1426
  - vendor/local/include/msgpack/type/tuple.hpp
1112
- - vendor/local/include/msgpack/type/string.hpp
1113
1427
  - vendor/local/include/msgpack/type/raw.hpp
1114
- - vendor/local/include/msgpack/type/set.hpp
1115
- - vendor/local/include/msgpack/type/tr1/unordered_set.hpp
1116
- - vendor/local/include/msgpack/type/tr1/unordered_map.hpp
1117
1428
  - vendor/local/include/msgpack/type/deque.hpp
1118
- - vendor/local/include/msgpack/type/int.hpp
1119
1429
  - vendor/local/include/msgpack/type/float.hpp
1120
- - vendor/local/include/msgpack/type/define.hpp
1430
+ - vendor/local/include/msgpack/type/list.hpp
1431
+ - vendor/local/include/msgpack/type/map.hpp
1121
1432
  - vendor/local/include/msgpack/type/pair.hpp
1433
+ - vendor/local/include/msgpack/type/tr1/unordered_set.hpp
1434
+ - vendor/local/include/msgpack/type/tr1/unordered_map.hpp
1435
+ - vendor/local/include/msgpack/type/set.hpp
1436
+ - vendor/local/include/msgpack/type/int.hpp
1437
+ - vendor/local/include/msgpack/type/fixint.hpp
1438
+ - vendor/local/include/msgpack/type/vector.hpp
1122
1439
  - vendor/local/include/msgpack/type/nil.hpp
1123
- - vendor/local/include/msgpack/type/map.hpp
1124
- - vendor/local/include/msgpack/zbuffer.h
1440
+ - vendor/local/include/msgpack/type/string.hpp
1125
1441
  - vendor/local/include/msgpack/unpack.h
1126
- - vendor/local/include/msgpack/unpack.hpp
1127
- - vendor/local/include/msgpack/object.h
1128
- - vendor/local/include/msgpack/type.hpp
1129
- - vendor/local/include/msgpack/zone.h
1130
- - vendor/local/include/msgpack/unpack_template.h
1131
1442
  - vendor/local/include/msgpack/unpack_define.h
1132
- - vendor/local/include/msgpack/pack_template.h
1443
+ - vendor/local/include/msgpack/sbuffer.h
1133
1444
  - vendor/local/include/msgpack/vrefbuffer.hpp
1134
- - vendor/local/include/msgpack/pack.hpp
1135
- - vendor/local/include/msgpack/sbuffer.hpp
1136
- - vendor/local/include/msgpack/pack_define.h
1137
- - vendor/local/include/msgpack/version.h
1138
- - vendor/local/include/msgpack/vrefbuffer.h
1139
- - vendor/local/include/msgpack/object.hpp
1445
+ - vendor/local/include/msgpack/pack.h
1140
1446
  - vendor/local/include/msgpack/sysdep.h
1141
- - vendor/local/include/msgpack/zbuffer.hpp
1142
- - vendor/local/include/msgpack/sbuffer.h
1143
- - vendor/local/include/msgpack/zone.hpp
1144
- - vendor/local/include/groonga/groonga.h
1145
- - vendor/local/include/groonga/groonga/plugin.h
1146
- - vendor/local/include/groonga/groonga/tokenizer.h
1147
- - vendor/local/etc/groonga/groonga.conf
1447
+ - vendor/local/include/msgpack/zbuffer.h
1148
1448
  homepage: http://groonga.rubyforge.org/#about-rroonga
1149
1449
  licenses:
1150
1450
  - LGPLv2
@@ -1174,9 +1474,55 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1174
1474
  requirements: []
1175
1475
 
1176
1476
  rubyforge_project: groonga
1177
- rubygems_version: 1.8.15
1477
+ rubygems_version: 1.8.24
1178
1478
  signing_key:
1179
1479
  specification_version: 3
1180
1480
  summary: Ruby bindings for groonga that provide full text search and column store features.
1181
- test_files: []
1182
-
1481
+ test_files:
1482
+ - test/test-remote.rb
1483
+ - test/test-accessor.rb
1484
+ - test/test-database-dumper.rb
1485
+ - test/test-index-column.rb
1486
+ - test/groonga-test-utils.rb
1487
+ - test/test-pagination.rb
1488
+ - test/test-table.rb
1489
+ - test/test-variable-size-column.rb
1490
+ - test/test-plugin.rb
1491
+ - test/test-hash.rb
1492
+ - test/test-table-traverse.rb
1493
+ - test/test-encoding.rb
1494
+ - test/test-schema-create-table.rb
1495
+ - test/test-type.rb
1496
+ - test/test-database.rb
1497
+ - test/test-variable.rb
1498
+ - test/test-table-select.rb
1499
+ - test/test-patricia-trie.rb
1500
+ - test/test-geo-point.rb
1501
+ - test/test-expression-builder.rb
1502
+ - test/test-logger.rb
1503
+ - test/test-array.rb
1504
+ - test/test-record.rb
1505
+ - test/test-column.rb
1506
+ - test/test-fix-size-column.rb
1507
+ - test/run-test.rb
1508
+ - test/test-procedure.rb
1509
+ - test/test-table-dumper.rb
1510
+ - test/test-schema.rb
1511
+ - test/test-view.rb
1512
+ - test/test-table-select-mecab.rb
1513
+ - test/test-command-select.rb
1514
+ - test/test-table-select-normalize.rb
1515
+ - test/test-expression.rb
1516
+ - test/test-vector-column.rb
1517
+ - test/test-version.rb
1518
+ - test/test-schema-view.rb
1519
+ - test/test-index-cursor.rb
1520
+ - test/test-double-array-trie.rb
1521
+ - test/test-exception.rb
1522
+ - test/test-schema-dumper.rb
1523
+ - test/test-schema-type.rb
1524
+ - test/test-table-select-weight.rb
1525
+ - test/test-gqtp.rb
1526
+ - test/test-context.rb
1527
+ - test/test-snippet.rb
1528
+ - test/test-table-offset-and-limit.rb