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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
@@ -0,0 +1,742 @@
1
+
2
+
3
+
4
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+
8
+ <html xmlns="http://www.w3.org/1999/xhtml">
9
+ <head>
10
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11
+
12
+ <title>13.2.5. リリース手順 &mdash; groonga v2.0.5-316-g23cc017 documentation</title>
13
+
14
+ <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
15
+ <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ var DOCUMENTATION_OPTIONS = {
19
+ URL_ROOT: '../../',
20
+ VERSION: '2.0.5-316-g23cc017',
21
+ COLLAPSE_INDEX: false,
22
+ FILE_SUFFIX: '.html',
23
+ HAS_SOURCE: true
24
+ };
25
+ </script>
26
+ <script type="text/javascript" src="../../_static/jquery.js"></script>
27
+ <script type="text/javascript" src="../../_static/underscore.js"></script>
28
+ <script type="text/javascript" src="../../_static/doctools.js"></script>
29
+ <link rel="shortcut icon" href="../../_static/favicon.ico"/>
30
+ <link rel="top" title="groonga v2.0.5-316-g23cc017 documentation" href="../../index.html" />
31
+ <link rel="up" title="13.2. groonga開発者向け情報" href="../development.html" />
32
+ <link rel="next" title="13.2.6. テスト方法" href="test.html" />
33
+ <link rel="prev" title="13.2.3. クエリの実現" href="query.html" />
34
+ </head>
35
+ <body>
36
+ <div class="header">
37
+ <h1 class="title">
38
+ <a id="top-link" href="../../index.html">
39
+ <span class="project">groonga</span>
40
+ <span class="separator">-</span>
41
+ <span class="description">An open-source fulltext search engine and column store.</span>
42
+ </a>
43
+ </h1>
44
+
45
+ <div class="other-language-links">
46
+ <ul>
47
+ <li><a href="../../../../ja/html/contribution/development/release.html"><img src="../../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
48
+ </ul>
49
+ </div>
50
+ </div>
51
+
52
+
53
+ <div class="related">
54
+ <h3>Navigation</h3>
55
+ <ul>
56
+ <li class="right" style="margin-right: 10px">
57
+ <a href="../../genindex.html" title="General Index"
58
+ accesskey="I">index</a></li>
59
+ <li class="right" >
60
+ <a href="test.html" title="13.2.6. テスト方法"
61
+ accesskey="N">next</a> |</li>
62
+ <li class="right" >
63
+ <a href="query.html" title="13.2.3. クエリの実現"
64
+ accesskey="P">previous</a> |</li>
65
+ <li><a href="../../index.html">groonga v2.0.5-316-g23cc017 documentation</a> &raquo;</li>
66
+ <li><a href="../../contribution.html" >13. How to contribute to groonga</a> &raquo;</li>
67
+ <li><a href="../development.html" accesskey="U">13.2. groonga開発者向け情報</a> &raquo;</li>
68
+ </ul>
69
+ </div>
70
+
71
+ <div class="document">
72
+ <div class="documentwrapper">
73
+ <div class="bodywrapper">
74
+ <div class="body">
75
+
76
+ <div class="section" id="id1">
77
+ <h1>13.2.5. リリース手順<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
78
+ <div class="section" id="id2">
79
+ <h2>13.2.5.1. 前提条件<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
80
+ <p>リリース手順の前提条件は以下の通りです。</p>
81
+ <ul class="simple">
82
+ <li>ビルド環境は Ubuntu 12.04 LTS(Precise Pangolin)</li>
83
+ <li>コマンドラインの実行例はzsh</li>
84
+ </ul>
85
+ <p>作業ディレクトリ例は以下を使用します。</p>
86
+ <ul class="simple">
87
+ <li>GROONGA_DIR=$HOME/work/groonga</li>
88
+ <li>GROONGA_CLONE_DIR=$HOME/work/groonga/groonga.clean</li>
89
+ <li>GROONGA_GITHUB_COM_PATH=$HOME/work/groonga/groonga.github.com</li>
90
+ <li>CUTTER_DIR=$HOME/work/cutter</li>
91
+ <li>CUTTER_SOURCE_PATH=$HOME/work/cutter/cutter</li>
92
+ </ul>
93
+ </div>
94
+ <div class="section" id="id3">
95
+ <h2>13.2.5.2. ビルド環境の準備<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h2>
96
+ <p>以下にgroongaのリリース作業を行うために事前にインストール
97
+ しておくべきパッケージを示します。</p>
98
+ <p>なお、ビルド環境としては Ubuntu 12.04 LTS(Precise Pangolin)を前提として説明しているため、その他の環境では適宜読み替えて下さい。:</p>
99
+ <div class="highlight-none"><div class="highlight"><pre>% sudo apt-get install -V debootstrap rinse createrepo rpm
100
+ mercurial python-docutils python-jinja2 ruby1.9.1-full mingw-w64 g++-mingw-w64 mecab libmecab-dev nsis gnupg2
101
+ </pre></div>
102
+ </div>
103
+ <p>rinseのバージョンが古いとCentOS 5/6パッケージのビルドを行うことができません。
104
+ 別途debパッケージを以下のコマンドを実行して最新版をインストールします。:</p>
105
+ <div class="highlight-none"><div class="highlight"><pre>% sudo dpkg -i rinse_1.9.2-1_all.deb
106
+ </pre></div>
107
+ </div>
108
+ <p>また、rubyのrakeパッケージを以下のコマンドによりインストールします。:</p>
109
+ <div class="highlight-none"><div class="highlight"><pre>% sudo gem1.9.1 install rake
110
+ </pre></div>
111
+ </div>
112
+ </div>
113
+ <div class="section" id="id4">
114
+ <h2>13.2.5.3. パッケージ署名用秘密鍵のインポート<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
115
+ <p>リリース作業ではRPMパッケージに対する署名を行います。
116
+ その際、パッケージ署名用の鍵が必要です。</p>
117
+ <p>groongaプロジェクトでは署名用の鍵をリリース担当者の公開鍵で暗号化してリポジトリのpackages/ディレクトリ以下へと登録しています。</p>
118
+ <p>リリース担当者はリポジトリに登録された秘密鍵を復号した後に鍵のインポートを以下のコマンドにて行います。:</p>
119
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages
120
+ % gpg --decrypt release-key-secret.asc.gpg.(担当者) &gt; (復号した鍵
121
+ ファイル)
122
+ % gpg --import (復号した鍵ファイル)
123
+ </pre></div>
124
+ </div>
125
+ <p>鍵のインポートが正常終了すると gpg --list-keys でgroongaの署名用の鍵を確認することができます。:</p>
126
+ <div class="highlight-none"><div class="highlight"><pre>pub 1024R/F10399C0 2012-04-24
127
+ uid groonga Key (groonga Official Signing Key)
128
+ &lt;packages@groonga.org&gt;
129
+ sub 1024R/BC009774 2012-04-24
130
+ </pre></div>
131
+ </div>
132
+ <p>鍵をインポートしただけでは使用することができないため、インポートした鍵に対してtrust,signを行う必要があります。</p>
133
+ <p>以下のコマンドを実行して署名を行います。(途中の選択肢は省略):</p>
134
+ <div class="highlight-none"><div class="highlight"><pre>% gpg --edit-key packages@groonga.org
135
+ gpg&gt; trust
136
+ gpg&gt; sign
137
+ gpg&gt; save
138
+ gpg&gt; quit
139
+ </pre></div>
140
+ </div>
141
+ <p>この作業は、新規にリリースを行うことになった担当者やパッケージに署名する鍵に変更があった場合などに行います。</p>
142
+ </div>
143
+ <div class="section" id="id5">
144
+ <h2>13.2.5.4. リリース作業用ディレクトリの作成<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
145
+ <p>groongaのリリース作業ではリリース専用の環境下(コンパイルフラグ)でビルドする必要があります。</p>
146
+ <p>リリース時と開発時でディレクトリを分けずに作業することもできますが、誤ったコンパイルフラグでリリースしてしまう危険があります。</p>
147
+ <p>そのため、以降の説明では$GROONGA_DIR以下のディレクトリにリリース用の作業ディレクトリ(groonga.clean)としてソースコードをcloneしたものとして説明します。</p>
148
+ <p>リリース用のクリーンな状態でソースコードを取得するために$GROONGA_DIRにて以下のコマンドを実行します。:</p>
149
+ <div class="highlight-none"><div class="highlight"><pre>% git clone git@github.com:groonga/groonga.git groonga.clean
150
+ </pre></div>
151
+ </div>
152
+ <p>この作業はリリース作業ごとに行います。</p>
153
+ </div>
154
+ <div class="section" id="id6">
155
+ <h2>13.2.5.5. 変更点のまとめ<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
156
+ <p>前回リリース時からの変更点を$GROONGA_CLONE_DIR/doc/source/news.txtにまとめます。
157
+ ここでまとめた内容についてはリリースアナウンスにも使用します。</p>
158
+ <p>前回リリースからの変更履歴を参照するには以下のコマンドを実行します。:</p>
159
+ <div class="highlight-none"><div class="highlight"><pre>% git log -p --reverse $(git tag | tail -1)..
160
+ </pre></div>
161
+ </div>
162
+ <p>ログを^commitで検索しながら、以下の基準を目安として変更点を追記していきます。</p>
163
+ <p>含めるもの</p>
164
+ <ul class="simple">
165
+ <li>ユーザへ影響するような変更</li>
166
+ <li>互換性がなくなるような変更</li>
167
+ </ul>
168
+ <p>含めないもの</p>
169
+ <ul class="simple">
170
+ <li>内部的な変更(変数名の変更やらリファクタリング)</li>
171
+ </ul>
172
+ </div>
173
+ <div class="section" id="groonga">
174
+ <h2>13.2.5.6. groongaのウェブサイトの取得<a class="headerlink" href="#groonga" title="Permalink to this headline">¶</a></h2>
175
+ <p>groongaのウェブサイトのソースはgroonga同様にgithubにリポジトリを置いています。</p>
176
+ <p>リリース作業では後述するコマンド(make update-latest-release)にてトップページのバージョンを置き換えることができるようになっています。</p>
177
+ <p>groongaのウェブサイトのソースコードを$GROONGA_GITHUB_COM_PATHとして取得するためには、$GROONGA_DIRにて以下のコマンドを実行します。:</p>
178
+ <div class="highlight-none"><div class="highlight"><pre>% git clone git@github.com:groonga/groonga.github.com.git
179
+ </pre></div>
180
+ </div>
181
+ <p>これで、$GROONGA_GITHUB_COM_PATHにgroonga.github.comのソースを取得できます。</p>
182
+ </div>
183
+ <div class="section" id="cutter">
184
+ <h2>13.2.5.7. cutterのソースコード取得<a class="headerlink" href="#cutter" title="Permalink to this headline">¶</a></h2>
185
+ <p>groongaのリリース作業では、cutterに含まれるスクリプトを使用しています。</p>
186
+ <p>そこであらかじめ用意しておいた$HOME/work/cutterディレクトリにてcutterのソースコードを以下のコマンドにて取得します。:</p>
187
+ <div class="highlight-none"><div class="highlight"><pre>% git clone git@github.com:clear-code/cutter.git
188
+ </pre></div>
189
+ </div>
190
+ <p>これで、$CUTTER_SOURCE_PATHディレクトリにcutterのソースを取得できます。</p>
191
+ </div>
192
+ <div class="section" id="configure">
193
+ <h2>13.2.5.8. configureスクリプトの生成<a class="headerlink" href="#configure" title="Permalink to this headline">¶</a></h2>
194
+ <p>groongaのソースコードをcloneした時点ではconfigureスクリプトが含まれておらず、そのままmakeコマンドにてビルドすることができません。</p>
195
+ <p>$GROONGA_CLONE_DIRにてautogen.shを以下のように実行します。:</p>
196
+ <div class="highlight-none"><div class="highlight"><pre>% sh autogen.sh
197
+ </pre></div>
198
+ </div>
199
+ <p>このコマンドの実行により、configureスクリプトが生成されます。</p>
200
+ </div>
201
+ <div class="section" id="id7">
202
+ <h2>13.2.5.9. configureスクリプトの実行<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
203
+ <p>Makefileを生成するためにconfigureスクリプトを実行します。</p>
204
+ <p>リリース用にビルドするためには以下のオプションを指定してconfigureを実行します。:</p>
205
+ <div class="highlight-none"><div class="highlight"><pre>% ./configure CFLAGS=&quot;-O0 -ggdb3&quot; CXXFLAGS=&quot;-O0 -ggdb3&quot; --prefix=/tmp/local --with-rsync-path=&quot;packages@packages.groonga.org:public&quot; --with-groonga-github-com-path=$HOME/work/groonga/groonga.github.com --enable-document --with-ruby19 --with-cutter-source-path=$HOME/work/cutter/cutter
206
+ </pre></div>
207
+ </div>
208
+ <p>configureオプションである--with-groonga-github-com-pathにはgroongaのウェブサイトのリポジトリをcloneした場所を指定します。</p>
209
+ <p>configureオプションである--with-cutter-source-pathにはcutterのソースをcloneした場所を指定します。</p>
210
+ <p>以下のようにgroongaのソースコードをcloneした先からの相対パスを指定することもできます。:</p>
211
+ <div class="highlight-none"><div class="highlight"><pre>% ./configure CFLAGS=&quot;-O0 -ggdb3&quot; CXXFLAGS=&quot;-O0 -ggdb3&quot; --prefix=/tmp/local --with-rsync-path=&quot;packages@packages.groonga.org:public&quot; --with-groonga-github-com-path=../groonga.github.com --enable-document --with-ruby19 --with-cutter-source-path=../../cutter/cutter
212
+ </pre></div>
213
+ </div>
214
+ <p>あらかじめpackagesユーザでpackages.groonga.orgにsshログインできることを確認しておいてください。</p>
215
+ <p>ログイン可能であるかの確認は以下のようにコマンドを実行して行います。:</p>
216
+ <div class="highlight-none"><div class="highlight"><pre>% ssh packages@packages.groonga.org
217
+ </pre></div>
218
+ </div>
219
+ </div>
220
+ <div class="section" id="make-update-latest-release">
221
+ <h2>13.2.5.10. make update-latest-releaseの実行<a class="headerlink" href="#make-update-latest-release" title="Permalink to this headline">¶</a></h2>
222
+ <p>make update-latest-releaseコマンドでは、OLD_RELEASE_DATEに前回のリリースの日付を、NEW_RELEASE_DATEに次回リリースの日付を指定します。</p>
223
+ <p>2.0.2のリリースを行った際は以下のコマンドを実行しました。::</p>
224
+ <div class="highlight-none"><div class="highlight"><pre>% make update-latest-release OLD_RELEASE=2.0.1 OLD_RELEASE_DATE=2012-03-29 NEW_RELEASE_DATE=2012-04-29
225
+ </pre></div>
226
+ </div>
227
+ <p>これにより、clone済みのgroongaのWebサイトのトップページのソース(index.html,ja/index.html)やRPMパッケージのspecファイルのバージョン表記などが更新されます。</p>
228
+ </div>
229
+ <div class="section" id="make-update-files">
230
+ <h2>13.2.5.11. make update-filesの実行<a class="headerlink" href="#make-update-files" title="Permalink to this headline">¶</a></h2>
231
+ <p>ロケールメッセージの更新や変更されたファイルのリスト等を更新するために以下のコマンドを実行します。:</p>
232
+ <div class="highlight-none"><div class="highlight"><pre>% make update-files
233
+ </pre></div>
234
+ </div>
235
+ <p>make update-filesを実行すると新規に追加されたファイルなどが各種.amファイルへとリストアップされます。</p>
236
+ <p>リリースに必要なファイルですので漏れなくコミットします。</p>
237
+ </div>
238
+ <div class="section" id="make-update-po">
239
+ <h2>13.2.5.12. make update-poの実行<a class="headerlink" href="#make-update-po" title="Permalink to this headline">¶</a></h2>
240
+ <p>ドキュメントの最新版と各国語版の内容を同期するために、poファイルの更新を以下のコマンドにて実行します。:</p>
241
+ <div class="highlight-none"><div class="highlight"><pre>% make update-po
242
+ </pre></div>
243
+ </div>
244
+ <p>make update-poを実行すると、doc/locale/ja/LC_MESSAGES以下の各種.poファイルが更新されます。</p>
245
+ </div>
246
+ <div class="section" id="po">
247
+ <h2>13.2.5.13. poファイルの翻訳<a class="headerlink" href="#po" title="Permalink to this headline">¶</a></h2>
248
+ <p>make update-poコマンドの実行により更新した各種.poファイルを翻訳します。</p>
249
+ <p>翻訳結果をHTMLで確認するために、以下のコマンドを実行します。:</p>
250
+ <div class="highlight-none"><div class="highlight"><pre>% make -C doc/locale/ja html
251
+ % make -C doc/locale/en html
252
+ </pre></div>
253
+ </div>
254
+ <p>確認が完了したら、翻訳済みpoファイルをコミットします。</p>
255
+ </div>
256
+ <div class="section" id="id8">
257
+ <h2>13.2.5.14. リリースタグの設定<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
258
+ <p>リリース用のタグを打つには以下のコマンドを実行します。:</p>
259
+ <div class="highlight-none"><div class="highlight"><pre>% make tag
260
+ </pre></div>
261
+ </div>
262
+ </div>
263
+ <div class="section" id="id9">
264
+ <h2>13.2.5.15. リリース用アーカイブファイルの作成<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h2>
265
+ <p>リリース用のソースアーカイブファイルを作成するために以下のコマンドを$GROONGA_CLONE_DIRにて実行します。:</p>
266
+ <div class="highlight-none"><div class="highlight"><pre>% make dist
267
+ </pre></div>
268
+ </div>
269
+ <p>これにより$GROONGA_CLONE_DIR/groonga-(バージョン).tar.gzが作成されます。</p>
270
+ </div>
271
+ <div class="section" id="id10">
272
+ <h2>13.2.5.16. パッケージのビルド<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
273
+ <p>リリース用のアーカイブファイルができたので、パッケージ化する作業を行います。</p>
274
+ <p>パッケージ化作業は以下の3種類を対象に行います。</p>
275
+ <ul class="simple">
276
+ <li>Debian系(.deb)</li>
277
+ <li>Red Hat系(.rpm)</li>
278
+ <li>Windows系(.exe,.zip)</li>
279
+ </ul>
280
+ <p>パッケージのビルドではいくつかのサブタスクから構成されています。</p>
281
+ <div class="section" id="id11">
282
+ <h3>13.2.5.16.1. ビルド用パッケージのダウンロード<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
283
+ <p>debパッケージのビルドに必要なパッケージをダウンロードするには以下のコマンドを実行します。:</p>
284
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/apt
285
+ % make download
286
+ </pre></div>
287
+ </div>
288
+ <p>これにより、lucid以降の関連する.debパッケージやソースアーカイブなどがカレントディレクトリ以下へとダウンロードされます。</p>
289
+ <p>rpmパッケージのビルドに必要なパッケージをダウンロードするには以下のコマンドを実行します。:</p>
290
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/yum
291
+ % make download
292
+ </pre></div>
293
+ </div>
294
+ <p>これにより、groongaやMySQLのRPM/SRPMパッケージなどがカレントディレクトリ以下へとダウンロードされます。</p>
295
+ <p>windowsパッケージのビルドに必要なパッケージをダウンロードするには以下のコマンドを実行します。:</p>
296
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/windows
297
+ % make download
298
+ </pre></div>
299
+ </div>
300
+ <p>これにより、groongaのインストーラやzipアーカイブがカレントディレクトリ以下へとダウンロードされます。</p>
301
+ <p>sourceパッケージに必要なものをダウンロードするには以下のコマンドを実行します。:</p>
302
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/source
303
+ % make download
304
+ </pre></div>
305
+ </div>
306
+ <p>これにより過去にリリースしたソースアーカイブ(.tar.gz)が
307
+ packages/source/filesディレクトリ以下へとダウンロードされます。</p>
308
+ </div>
309
+ </div>
310
+ <div class="section" id="debian">
311
+ <h2>13.2.5.17. Debian系パッケージのビルド<a class="headerlink" href="#debian" title="Permalink to this headline">¶</a></h2>
312
+ <p>groongaのpackages/aptサブディレクトリに移動して、以下のコマンドを実行します。:</p>
313
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/apt
314
+ % make build PALALLEL=yes
315
+ </pre></div>
316
+ </div>
317
+ <p>make build PALALLEL=yesコマンドを実行すると、ディストリビューションのリリースとアーキテクチャの組み合わせでビルドを平行して行うことができます。</p>
318
+ <p>現在サポートされているのは以下の通りです。</p>
319
+ <ul class="simple">
320
+ <li>squeeze i386/amd64</li>
321
+ <li>wheezy i386/amd64</li>
322
+ <li>unstable i386/amd64</li>
323
+ <li>lucid i386/amd64</li>
324
+ <li>natty i386/amd64</li>
325
+ <li>oneiric i386/amd64</li>
326
+ <li>precise i386/amd64</li>
327
+ </ul>
328
+ <p>正常にビルドが終了すると$GROONGA_CLONE_DIR/packages/apt/repositories配下に.debパッケージが生成されます。</p>
329
+ <p>make build ではまとめてビルドできないこともあります。
330
+ その場合にはディストリビューションごとやアーキテクチャごとなど、個別にビルドすることで問題が発生している箇所を切り分ける必要があります。</p>
331
+ <p>生成したパッケージへの署名を行うには以下のコマンドを実行します。:</p>
332
+ <div class="highlight-none"><div class="highlight"><pre>% make sign-packages
333
+ </pre></div>
334
+ </div>
335
+ <p>リリース対象のファイルをリポジトリに反映するには以下のコマンドを実行します。:</p>
336
+ <div class="highlight-none"><div class="highlight"><pre>% make update-repository
337
+ </pre></div>
338
+ </div>
339
+ <p>リポジトリにGnuPGで署名を行うために以下のコマンドを実行します。:</p>
340
+ <div class="highlight-none"><div class="highlight"><pre>% make sign-repository
341
+ </pre></div>
342
+ </div>
343
+ </div>
344
+ <div class="section" id="red-hat">
345
+ <h2>13.2.5.18. Red Hat系パッケージのビルド<a class="headerlink" href="#red-hat" title="Permalink to this headline">¶</a></h2>
346
+ <p>groongaのpackages/yumサブディレクトリに移動して、以下のコマンドを実行します。:</p>
347
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/yum
348
+ % make build PALALLES=yes
349
+ </pre></div>
350
+ </div>
351
+ <p>make build PALALLEL=yesコマンドを実行すると、ディストリビューションのリリースとアーキテクチャの組み合わせでビルドを平行して行うことができます。</p>
352
+ <p>現在サポートされているのは以下の通りです。</p>
353
+ <ul class="simple">
354
+ <li>centos-5 i386/x86_64</li>
355
+ <li>centos-6 i386/x86_64</li>
356
+ <li>fedora-17 i386/x86_64</li>
357
+ </ul>
358
+ <p>ビルドが正常終了すると$GROONGA_CLONE_DIR/packages/yum/repositories配下にRPMパッケージが生成されます。</p>
359
+ <ul class="simple">
360
+ <li>repositories/yum/centos/5/i386/Packages</li>
361
+ <li>repositories/yum/centos/5/x86_64/Packages</li>
362
+ <li>repositories/yum/centos/6/i386/Packages</li>
363
+ <li>repositories/yum/centos/6/x86_64/Packages</li>
364
+ <li>repositories/yum/fedora/17/i386/Packages</li>
365
+ <li>repositories/yum/fedora/17/x86_64/Packages</li>
366
+ </ul>
367
+ <p>リリース対象のRPMに署名を行うには以下のコマンドを実行します。:</p>
368
+ <div class="highlight-none"><div class="highlight"><pre>% make sign-packages
369
+ </pre></div>
370
+ </div>
371
+ <p>リリース対象のファイルをリポジトリに反映するには以下のコマンドを実行します。:</p>
372
+ <div class="highlight-none"><div class="highlight"><pre>% make update-repository
373
+ </pre></div>
374
+ </div>
375
+ </div>
376
+ <div class="section" id="windows">
377
+ <h2>13.2.5.19. Windows用パッケージのビルド<a class="headerlink" href="#windows" title="Permalink to this headline">¶</a></h2>
378
+ <p>packages/windowsサブディレクトリに移動して、以下のコマンドを実行します。:</p>
379
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/windows
380
+ % make build
381
+ % make package
382
+ % make installer
383
+ </pre></div>
384
+ </div>
385
+ <p>make releaseを実行することでbuildからuploadまで一気に実行することができますが、途中で失敗することもあるので順に実行することをおすすめします。</p>
386
+ <p>make buildでクロスコンパイルを行います。
387
+ 正常に終了するとdist-x64/dist-x86ディレクトリ以下にx64/x86バイナリを作成します。</p>
388
+ <p>make packageが正常に終了するとzipアーカイブをfilesディレクトリ以下に作成します。</p>
389
+ <p>make installerが正常に終了するとWindowsインストーラをfilesディレクトリ以下に作成します。</p>
390
+ </div>
391
+ <div class="section" id="id12">
392
+ <h2>13.2.5.20. パッケージの動作確認<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
393
+ <p>ビルドしたパッケージに対しリリース前の動作確認を行います。</p>
394
+ <p>Debian系もしくはRed Hat系の場合には本番環境へとアップロードする前にローカルのaptないしyumのリポジトリを参照して正常に更新できることを確認します。</p>
395
+ <p>ここでは以下のようにrubyを利用してリポジトリをwebサーバ経由で参照できるようにします。:</p>
396
+ <div class="highlight-none"><div class="highlight"><pre>% ruby1.9.1 -run -e httpd -- packages/yum/repositories (yumの場合)
397
+ % ruby1.9.1 -run -e httpd -- packages/apt/repositories (aptの場合)
398
+ </pre></div>
399
+ </div>
400
+ <div class="section" id="grntest">
401
+ <h3>13.2.5.20.1. grntestの準備<a class="headerlink" href="#grntest" title="Permalink to this headline">¶</a></h3>
402
+ <p>grntestを実行するためにはgroongaのテストデータとgrntestのソースが必要です。</p>
403
+ <p>まずgroongaのソースを任意のディレクトリへと展開します。:</p>
404
+ <div class="highlight-none"><div class="highlight"><pre>% tar zxvf groonga-(バージョン).tar.gz
405
+ </pre></div>
406
+ </div>
407
+ <p>次にgroongaのtest/functionディレクトリ以下にgrntestのソースを展開します。
408
+ つまりtest/function/grntestという名前でgrntestのソースを配置します。:</p>
409
+ <div class="highlight-none"><div class="highlight"><pre>% ls test/function/grntest/
410
+ README.md binlib license test
411
+ </pre></div>
412
+ </div>
413
+ </div>
414
+ <div class="section" id="id13">
415
+ <h3>13.2.5.20.2. grntestの実行方法<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
416
+ <p>grntestではgroongaコマンドを明示的にしていすることができます。
417
+ 後述のパッケージごとのgrntestによる動作確認では以下のようにして実行します。:</p>
418
+ <div class="highlight-none"><div class="highlight"><pre>% GROONGA=(groongaのパス指定) test/function/run-test.sh
419
+ </pre></div>
420
+ </div>
421
+ <p>最後にgrntestによる実行結果が以下のようにまとめて表示されます。:</p>
422
+ <div class="highlight-none"><div class="highlight"><pre>55 tests, 52 passes, 0 failures, 3 not checked tests.
423
+ 94.55% passed.
424
+ </pre></div>
425
+ </div>
426
+ <p>grntestでエラーが発生しないことを確認します。</p>
427
+ </div>
428
+ <div class="section" id="id14">
429
+ <h3>13.2.5.20.3. Debian系の場合<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
430
+ <p>Debian系の場合の動作確認手順は以下の通りとなります。</p>
431
+ <ul class="simple">
432
+ <li>旧バージョンをchroot環境へとインストールする</li>
433
+ <li>chroot環境の/etc/hostsを書き換えてpackages.groonga.orgがホストを
434
+ 参照するように変更する</li>
435
+ <li>ホストでwebサーバを起動してドキュメントルートをビルド環境のもの
436
+ (repositories/apt/packages)に設定する</li>
437
+ <li>アップグレード手順を実行する</li>
438
+ <li>grntestのアーカイブを展開してインストールしたバージョンでテストを実
439
+ 行する</li>
440
+ <li>grntestの正常終了を確認する</li>
441
+ </ul>
442
+ </div>
443
+ <div class="section" id="id15">
444
+ <h3>13.2.5.20.4. Red Hat系の場合<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
445
+ <p>Red Hat系の場合の動作確認手順は以下の通りとなります。</p>
446
+ <ul class="simple">
447
+ <li>旧バージョンをchroot環境へとインストール</li>
448
+ <li>chroot環境の/etc/hostsを書き換えてpackages.groonga.orgがホストを参照するように変更する</li>
449
+ <li>ホストでwebサーバを起動してドキュメントルートをビルド環境のもの(packages/yum/repositories)に設定する</li>
450
+ <li>アップグレード手順を実行する</li>
451
+ <li>grntestのアーカイブを展開してインストールしたバージョンでテストを実行する</li>
452
+ <li>grntestの正常終了を確認する</li>
453
+ </ul>
454
+ </div>
455
+ <div class="section" id="id16">
456
+ <h3>13.2.5.20.5. Windows向けの場合<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
457
+ <ul class="simple">
458
+ <li>新規インストール/上書きインストールを行う</li>
459
+ <li>grntestのアーカイブを展開してインストールしたバージョンでテストを実行する</li>
460
+ <li>grntestの正常終了を確認する</li>
461
+ </ul>
462
+ <p>zipアーカイブも同様にしてgrntestを実行し動作確認を行います。</p>
463
+ </div>
464
+ </div>
465
+ <div class="section" id="id17">
466
+ <h2>13.2.5.21. リリースアナウンスの作成<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h2>
467
+ <p>リリースの際にはリリースアナウンスを流して、groongaを広く通知します。</p>
468
+ <p>news.txtに変更点をまとめましたが、それを元にリリースアナウンスを作成します。</p>
469
+ <p>リリースアナウンスには以下を含めます。</p>
470
+ <ul class="simple">
471
+ <li>インストール方法へのリンク</li>
472
+ <li>リリースのトピック紹介</li>
473
+ <li>リリース変更点へのリンク</li>
474
+ <li>リリース変更点(news.txtの内容)</li>
475
+ </ul>
476
+ <p>リリースのトピック紹介では、これからgroongaを使う人へアピールする点や既存のバージョンを利用している人がアップグレードする際に必要な情報を提供します。</p>
477
+ <p>非互換な変更が含まれるのであれば、回避方法等の案内を載せることも重要です。</p>
478
+ <p>参考までに過去のリリースアナウンスへのリンクを以下に示します。</p>
479
+ <ul>
480
+ <li><p class="first">[Groonga-talk] [ANN] groonga 2.0.2</p>
481
+ <blockquote>
482
+ <div><ul class="simple">
483
+ <li><a class="reference external" href="http://sourceforge.net/mailarchive/message.php?msg_id=29195195">http://sourceforge.net/mailarchive/message.php?msg_id=29195195</a></li>
484
+ </ul>
485
+ </div></blockquote>
486
+ </li>
487
+ <li><p class="first">[groonga-dev,00794] [ANN] groonga 2.0.2</p>
488
+ <blockquote>
489
+ <div><ul class="simple">
490
+ <li><a class="reference external" href="http://sourceforge.jp/projects/groonga/lists/archive/dev/2012-April/000794.html">http://sourceforge.jp/projects/groonga/lists/archive/dev/2012-April/000794.html</a></li>
491
+ </ul>
492
+ </div></blockquote>
493
+ </li>
494
+ </ul>
495
+ </div>
496
+ <div class="section" id="id18">
497
+ <h2>13.2.5.22. パッケージのアップロード<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
498
+ <p>動作確認が完了し、Debian系、Red Hat系、Windows向け、ソースコードそれぞれにおいてパッケージやアーカイブのアップロードを行います。</p>
499
+ <p>Debian系のパッケージのアップロードには以下のコマンドを実行します。:</p>
500
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/apt
501
+ % make upload
502
+ </pre></div>
503
+ </div>
504
+ <p>Red Hat系のパッケージのアップロードには以下のコマンドを実行します。:</p>
505
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/yum
506
+ % make upload
507
+ </pre></div>
508
+ </div>
509
+ <p>Windows向けのパッケージのアップロードには以下のコマンドを実行します。:</p>
510
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/windows
511
+ % make upload
512
+ </pre></div>
513
+ </div>
514
+ <p>ソースアーカイブのアップロードには以下のコマンドを実行します。:</p>
515
+ <div class="highlight-none"><div class="highlight"><pre>% cd packages/source
516
+ % make upload
517
+ </pre></div>
518
+ </div>
519
+ <p>アップロードが正常終了すると、リリース対象のリポジトリデータやパッケージ、アーカイブ等がpackages.groonga.orgへと反映されます。</p>
520
+ </div>
521
+ <div class="section" id="blogroonga">
522
+ <h2>13.2.5.23. blogroonga(ブログ)の更新<a class="headerlink" href="#blogroonga" title="Permalink to this headline">¶</a></h2>
523
+ <p><a class="reference external" href="http://groonga.org/blog/">http://groonga.org/blog/</a> および <a class="reference external" href="http://groonga.org/blog/">http://groonga.org/blog/</a> にて公開されているリリース案内を作成します。</p>
524
+ <p>基本的にはリリースアナウンスの内容をそのまま記載します。</p>
525
+ <p>cloneしたWebサイトのソースに対して以下のファイルを新規追加します。</p>
526
+ <ul class="simple">
527
+ <li>groonga.github.com/en/_post/(リリース日)-release.textile</li>
528
+ <li>groonga.github.com/ja/_post/(リリース日)-release.textile</li>
529
+ </ul>
530
+ <p>編集した内容をpushする前に確認したい場合にはjekyllおよびRedClothが必要です。
531
+ インストールするには以下のコマンドを実行します。:</p>
532
+ <div class="highlight-none"><div class="highlight"><pre>% sudo gem1.9.1 install jekyll RedCloth
533
+ </pre></div>
534
+ </div>
535
+ <p>jekyllのインストールを行ったら、以下のコマンドでローカルにwebサーバを起動します。:</p>
536
+ <div class="highlight-none"><div class="highlight"><pre>% jekyll --server --auto
537
+ </pre></div>
538
+ </div>
539
+ <p>あとはブラウザにてhttp://localhost:4000にアクセスして内容に問題がないかを確認します。</p>
540
+ <div class="admonition note">
541
+ <p class="first admonition-title">Note</p>
542
+ <p>記事を非公開の状態でアップロードするには.textileファイルのpublished:をfalseに設定します。:</p>
543
+ <div class="last highlight-none"><div class="highlight"><pre>---
544
+ layout: post.en
545
+ title: Groonga 2.0.5 has been released
546
+ published: false
547
+ ---
548
+ </pre></div>
549
+ </div>
550
+ </div>
551
+ </div>
552
+ <div class="section" id="id19">
553
+ <h2>13.2.5.24. ドキュメントのアップロード<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h2>
554
+ <p>doc/source以下のドキュメントを更新、翻訳まで完了している状態で、ドキュメントのアップロード作業を行います。</p>
555
+ <p>そのためにはまず以下のコマンドを実行します。:</p>
556
+ <div class="highlight-none"><div class="highlight"><pre>% make update-document
557
+ </pre></div>
558
+ </div>
559
+ <p>これによりcloneしておいたgroonga.github.comのdoc/locale以下に更新したドキュメントがコピーされます。</p>
560
+ <p>生成されているドキュメントに問題のないことを確認できたら、コミット、pushしてgroonga.orgへと反映します。</p>
561
+ </div>
562
+ <div class="section" id="id20">
563
+ <h2>13.2.5.25. リリースアナウンス<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h2>
564
+ <p>作成したリリースアナウンスをメーリングリストへと流します。</p>
565
+ <ul class="simple">
566
+ <li>groonga-dev <a class="reference external" href="mailto:groonga-dev&#37;&#52;&#48;lists&#46;sourceforge&#46;jp">groonga-dev<span>&#64;</span>lists<span>&#46;</span>sourceforge<span>&#46;</span>jp</a></li>
567
+ <li>Groonga-talk <a class="reference external" href="mailto:groonga-talk&#37;&#52;&#48;lists&#46;sourceforge&#46;net">groonga-talk<span>&#64;</span>lists<span>&#46;</span>sourceforge<span>&#46;</span>net</a></li>
568
+ </ul>
569
+ </div>
570
+ <div class="section" id="freecode-com">
571
+ <h2>13.2.5.26. freecode.comへリリース情報を登録<a class="headerlink" href="#freecode-com" title="Permalink to this headline">¶</a></h2>
572
+ <p>groongaプロジェクトではfreecode.comでもリリース情報を発信しています。</p>
573
+ <p>freecode.comのプロジェクトページは以下の通りです。</p>
574
+ <blockquote>
575
+ <div><a class="reference external" href="https://freecode.com/projects/groonga">https://freecode.com/projects/groonga</a></div></blockquote>
576
+ <p>プロジェクトの管理メニューから「Submit a release」をクリックし、
577
+ 新規リリース情報を登録します。</p>
578
+ <blockquote>
579
+ <div><a class="reference external" href="https://freecode.com/projects/groonga/releases/new">https://freecode.com/projects/groonga/releases/new</a></div></blockquote>
580
+ <p>以上でリリース作業は終了です。</p>
581
+ </div>
582
+ <div class="section" id="id21">
583
+ <h2>13.2.5.27. リリース後にやること<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h2>
584
+ <p>リリースアナウンスを流し終えたら、次期バージョンの開発が始まります。</p>
585
+ <ul class="simple">
586
+ <li>groonga プロジェクトの新規バージョン追加</li>
587
+ <li>groonga のbase_versionの更新</li>
588
+ </ul>
589
+ <div class="section" id="id22">
590
+ <h3>13.2.5.27.1. groonga プロジェクトの新規バージョン追加<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
591
+ <p><a class="reference external" href="http://redmine.groonga.org/projects/groonga/settings">groonga プロジェクトの設定ページ</a> にて新規バージョンを追加します。(例: release-2.0.6)</p>
592
+ </div>
593
+ <div class="section" id="id24">
594
+ <h3>13.2.5.27.2. groonga バージョン更新<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
595
+ <p>$GROONGA_CLONE_DIRにて以下のコマンドを実行します。:</p>
596
+ <div class="highlight-none"><div class="highlight"><pre>% make update-version NEW_VERSION=2.0.6
597
+ </pre></div>
598
+ </div>
599
+ <p>これにより$GROONGA_CLONE_DIR/base_versionが更新されるのでコミットしておきます。</p>
600
+ </div>
601
+ </div>
602
+ <div class="section" id="tips">
603
+ <h2>13.2.5.28. ビルド時のTIPS<a class="headerlink" href="#tips" title="Permalink to this headline">¶</a></h2>
604
+ <div class="section" id="id25">
605
+ <h3>13.2.5.28.1. ビルドを並列化したい<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
606
+ <p>make build PALALLES=yesを指定するとchroot環境で並列にビルドを
607
+ 実行できます。</p>
608
+ </div>
609
+ <div class="section" id="id26">
610
+ <h3>13.2.5.28.2. 特定の環境向けのみビルドしたい<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
611
+ <p>Debian系の場合、CODES,ARCHITECTURESオプションを明示的に指定することで、特定のリリース、アーキテクチャのみビルドすることができます。</p>
612
+ <p>squeezeのi386のみビルドしたい場合には以下のコマンドを実行します。:</p>
613
+ <div class="highlight-none"><div class="highlight"><pre>% make build ARCHITECTURES=i386 CODES=squeeze
614
+ </pre></div>
615
+ </div>
616
+ <p>buildコマンド以外でも build-package-deb build-repository-debなどのサブタスクでもARCHITECTURES,CODES指定は有効です。</p>
617
+ <p>Red Hat系の場合、ARCHITECTURES,DISTRIBUTIONSオプションを明示的に指定することで、特定のリリース、アーキテクチャのみビルドすることができます。</p>
618
+ <p>fedoraのi386のみビルドしたい場合には以下のコマンドを実行します。:</p>
619
+ <div class="highlight-none"><div class="highlight"><pre>% make build ARCHITECTURES=i386 DISTRIBUTIONS=fedora
620
+ </pre></div>
621
+ </div>
622
+ <p>buildコマンド以外でも build-in-chroot build-repository-rpmなどのサブタスクでもARCHITECTURES,DISTRIBUTIONSの指定は有効です。</p>
623
+ <p>centosの場合、CENTOS_VERSIONSを指定することで特定のバージョンのみビルドすることができます。</p>
624
+ </div>
625
+ <div class="section" id="id27">
626
+ <h3>13.2.5.28.3. パッケージの署名用のパスフレーズを知りたい<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
627
+ <p>パッケージの署名に必要な秘密鍵のパスフレーズについては
628
+ リリース担当者向けの秘密鍵を復号したテキストの1行目に記載してあります。</p>
629
+ </div>
630
+ </div>
631
+ </div>
632
+
633
+
634
+ </div>
635
+ </div>
636
+ </div>
637
+ <div class="sphinxsidebar">
638
+ <div class="sphinxsidebarwrapper">
639
+ <h3><a href="../../index.html">Table Of Contents</a></h3>
640
+ <ul>
641
+ <li><a class="reference internal" href="#">13.2.5. リリース手順</a><ul>
642
+ <li><a class="reference internal" href="#id2">13.2.5.1. 前提条件</a></li>
643
+ <li><a class="reference internal" href="#id3">13.2.5.2. ビルド環境の準備</a></li>
644
+ <li><a class="reference internal" href="#id4">13.2.5.3. パッケージ署名用秘密鍵のインポート</a></li>
645
+ <li><a class="reference internal" href="#id5">13.2.5.4. リリース作業用ディレクトリの作成</a></li>
646
+ <li><a class="reference internal" href="#id6">13.2.5.5. 変更点のまとめ</a></li>
647
+ <li><a class="reference internal" href="#groonga">13.2.5.6. groongaのウェブサイトの取得</a></li>
648
+ <li><a class="reference internal" href="#cutter">13.2.5.7. cutterのソースコード取得</a></li>
649
+ <li><a class="reference internal" href="#configure">13.2.5.8. configureスクリプトの生成</a></li>
650
+ <li><a class="reference internal" href="#id7">13.2.5.9. configureスクリプトの実行</a></li>
651
+ <li><a class="reference internal" href="#make-update-latest-release">13.2.5.10. make update-latest-releaseの実行</a></li>
652
+ <li><a class="reference internal" href="#make-update-files">13.2.5.11. make update-filesの実行</a></li>
653
+ <li><a class="reference internal" href="#make-update-po">13.2.5.12. make update-poの実行</a></li>
654
+ <li><a class="reference internal" href="#po">13.2.5.13. poファイルの翻訳</a></li>
655
+ <li><a class="reference internal" href="#id8">13.2.5.14. リリースタグの設定</a></li>
656
+ <li><a class="reference internal" href="#id9">13.2.5.15. リリース用アーカイブファイルの作成</a></li>
657
+ <li><a class="reference internal" href="#id10">13.2.5.16. パッケージのビルド</a><ul>
658
+ <li><a class="reference internal" href="#id11">13.2.5.16.1. ビルド用パッケージのダウンロード</a></li>
659
+ </ul>
660
+ </li>
661
+ <li><a class="reference internal" href="#debian">13.2.5.17. Debian系パッケージのビルド</a></li>
662
+ <li><a class="reference internal" href="#red-hat">13.2.5.18. Red Hat系パッケージのビルド</a></li>
663
+ <li><a class="reference internal" href="#windows">13.2.5.19. Windows用パッケージのビルド</a></li>
664
+ <li><a class="reference internal" href="#id12">13.2.5.20. パッケージの動作確認</a><ul>
665
+ <li><a class="reference internal" href="#grntest">13.2.5.20.1. grntestの準備</a></li>
666
+ <li><a class="reference internal" href="#id13">13.2.5.20.2. grntestの実行方法</a></li>
667
+ <li><a class="reference internal" href="#id14">13.2.5.20.3. Debian系の場合</a></li>
668
+ <li><a class="reference internal" href="#id15">13.2.5.20.4. Red Hat系の場合</a></li>
669
+ <li><a class="reference internal" href="#id16">13.2.5.20.5. Windows向けの場合</a></li>
670
+ </ul>
671
+ </li>
672
+ <li><a class="reference internal" href="#id17">13.2.5.21. リリースアナウンスの作成</a></li>
673
+ <li><a class="reference internal" href="#id18">13.2.5.22. パッケージのアップロード</a></li>
674
+ <li><a class="reference internal" href="#blogroonga">13.2.5.23. blogroonga(ブログ)の更新</a></li>
675
+ <li><a class="reference internal" href="#id19">13.2.5.24. ドキュメントのアップロード</a></li>
676
+ <li><a class="reference internal" href="#id20">13.2.5.25. リリースアナウンス</a></li>
677
+ <li><a class="reference internal" href="#freecode-com">13.2.5.26. freecode.comへリリース情報を登録</a></li>
678
+ <li><a class="reference internal" href="#id21">13.2.5.27. リリース後にやること</a><ul>
679
+ <li><a class="reference internal" href="#id22">13.2.5.27.1. groonga プロジェクトの新規バージョン追加</a></li>
680
+ <li><a class="reference internal" href="#id24">13.2.5.27.2. groonga バージョン更新</a></li>
681
+ </ul>
682
+ </li>
683
+ <li><a class="reference internal" href="#tips">13.2.5.28. ビルド時のTIPS</a><ul>
684
+ <li><a class="reference internal" href="#id25">13.2.5.28.1. ビルドを並列化したい</a></li>
685
+ <li><a class="reference internal" href="#id26">13.2.5.28.2. 特定の環境向けのみビルドしたい</a></li>
686
+ <li><a class="reference internal" href="#id27">13.2.5.28.3. パッケージの署名用のパスフレーズを知りたい</a></li>
687
+ </ul>
688
+ </li>
689
+ </ul>
690
+ </li>
691
+ </ul>
692
+
693
+ <h4>Previous topic</h4>
694
+ <p class="topless"><a href="query.html"
695
+ title="previous chapter">13.2.3. クエリの実現</a></p>
696
+ <h4>Next topic</h4>
697
+ <p class="topless"><a href="test.html"
698
+ title="next chapter">13.2.6. テスト方法</a></p>
699
+ <h3>This Page</h3>
700
+ <ul class="this-page-menu">
701
+ <li><a href="../../_sources/contribution/development/release.txt"
702
+ rel="nofollow">Show Source</a></li>
703
+ </ul>
704
+ <div id="searchbox" style="display: none">
705
+ <h3>Quick search</h3>
706
+ <form class="search" action="../../search.html" method="get">
707
+ <input type="text" name="q" />
708
+ <input type="submit" value="Go" />
709
+ <input type="hidden" name="check_keywords" value="yes" />
710
+ <input type="hidden" name="area" value="default" />
711
+ </form>
712
+ <p class="searchtip" style="font-size: 90%">
713
+ Enter search terms or a module, class or function name.
714
+ </p>
715
+ </div>
716
+ <script type="text/javascript">$('#searchbox').show(0);</script>
717
+ </div>
718
+ </div>
719
+ <div class="clearer"></div>
720
+ </div>
721
+ <div class="related">
722
+ <h3>Navigation</h3>
723
+ <ul>
724
+ <li class="right" style="margin-right: 10px">
725
+ <a href="../../genindex.html" title="General Index"
726
+ >index</a></li>
727
+ <li class="right" >
728
+ <a href="test.html" title="13.2.6. テスト方法"
729
+ >next</a> |</li>
730
+ <li class="right" >
731
+ <a href="query.html" title="13.2.3. クエリの実現"
732
+ >previous</a> |</li>
733
+ <li><a href="../../index.html">groonga v2.0.5-316-g23cc017 documentation</a> &raquo;</li>
734
+ <li><a href="../../contribution.html" >13. How to contribute to groonga</a> &raquo;</li>
735
+ <li><a href="../development.html" >13.2. groonga開発者向け情報</a> &raquo;</li>
736
+ </ul>
737
+ </div>
738
+ <div class="footer">
739
+ &copy; Copyright 2009-2012, Brazil, Inc.
740
+ </div>
741
+ </body>
742
+ </html>