rroonga 4.0.1-x86-mingw32 → 4.0.2-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.
- checksums.yaml +4 -4
 - data/doc/text/news.textile +25 -0
 - data/ext/groonga/extconf.rb +2 -0
 - data/ext/groonga/rb-grn-index-column.c +91 -0
 - data/ext/groonga/rb-grn-object.c +3 -9
 - data/ext/groonga/rb-grn-table.c +18 -24
 - data/ext/groonga/rb-grn.h +1 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +1 -1
 - data/lib/groonga/patricia-trie.rb +4 -1
 - data/lib/groonga/schema.rb +10 -4
 - data/rroonga-build.rb +1 -1
 - data/test/test-context.rb +8 -8
 - data/test/test-database-dumper.rb +6 -6
 - data/test/test-index-column.rb +9 -4
 - data/test/test-schema-dumper.rb +6 -6
 - data/test/test-schema.rb +32 -3
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga/plugin.h +19 -1
 - data/vendor/local/include/groonga/groonga.h +2 -1
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +3 -3
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.la +3 -3
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +3 -3
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +3 -3
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +1 -1
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +2 -2
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/sbin/groonga-httpd-restart +1 -1
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt +75 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +22 -22
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +10 -11
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +10 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +17 -149
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +73 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_column.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +26 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +1 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/{pseudo_column.txt → columns/pseudo.txt} +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +165 -67
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +28 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +38 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt +17 -0
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +13 -13
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +65 -65
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +102 -102
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +15 -16
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +16 -16
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +202 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +12 -11
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +61 -60
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +53 -19
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/index.html +83 -87
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +30 -151
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/en/html/install.html +10 -13
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news.html +286 -209
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +166 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +36 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/{pseudo_column.html → columns/pseudo.html} +25 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +284 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +221 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +23 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +155 -95
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +31 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +47 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +254 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +43 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +48 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +48 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +44 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +34 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +67 -65
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +20 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/reference.html +72 -74
 - data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +19 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +6 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt +75 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +10 -11
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +17 -149
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +73 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +26 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +1 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/{pseudo_column.txt → columns/pseudo.txt} +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +165 -67
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +28 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +38 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt +17 -0
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +65 -65
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +102 -102
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +40 -40
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +15 -16
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +16 -16
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +203 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +12 -11
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +61 -60
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +53 -19
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/index.html +83 -87
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +12 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +27 -137
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/install.html +7 -10
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news.html +292 -210
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +167 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +36 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/{pseudo_column.html → columns/pseudo.html} +26 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +296 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +11 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +225 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +23 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +156 -100
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +31 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +47 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +40 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +258 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +55 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +48 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +38 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +48 -48
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +44 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +62 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +72 -74
 - data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +19 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
 - data/vendor/local/share/groonga/html/admin/index.html +0 -1
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +10 -8
 - data/vendor/local/share/man/ja/man1/groonga.1 +1032 -585
 - data/vendor/local/share/man/man1/groonga.1 +1051 -607
 - data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
 - data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
 - metadata +289 -278
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt +0 -43
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +0 -184
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt +0 -43
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +0 -184
 - data/vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js +0 -31
 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: rroonga
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 4.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 4.0.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86-mingw32
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Kouhei Sutou
         
     | 
| 
         @@ -12,174 +12,174 @@ authors: 
     | 
|
| 
       12 
12 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       14 
14 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       15 
     | 
    
         
            -
            date: 2014- 
     | 
| 
      
 15 
     | 
    
         
            +
            date: 2014-05-30 00:00:00.000000000 Z
         
     | 
| 
       16 
16 
     | 
    
         
             
            dependencies:
         
     | 
| 
       17 
17 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       18 
18 
     | 
    
         
             
              name: pkg-config
         
     | 
| 
       19 
19 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       20 
20 
     | 
    
         
             
                requirements:
         
     | 
| 
       21 
     | 
    
         
            -
                - -  
     | 
| 
      
 21 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       23 
23 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       24 
24 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       25 
25 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       26 
26 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       27 
27 
     | 
    
         
             
                requirements:
         
     | 
| 
       28 
     | 
    
         
            -
                - -  
     | 
| 
      
 28 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       29 
29 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       30 
30 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       31 
31 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       32 
32 
     | 
    
         
             
              name: groonga-client
         
     | 
| 
       33 
33 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       34 
34 
     | 
    
         
             
                requirements:
         
     | 
| 
       35 
     | 
    
         
            -
                - -  
     | 
| 
      
 35 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       36 
36 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       37 
37 
     | 
    
         
             
                    version: 0.0.3
         
     | 
| 
       38 
38 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       39 
39 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       40 
40 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       41 
41 
     | 
    
         
             
                requirements:
         
     | 
| 
       42 
     | 
    
         
            -
                - -  
     | 
| 
      
 42 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       43 
43 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       44 
44 
     | 
    
         
             
                    version: 0.0.3
         
     | 
| 
       45 
45 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       46 
46 
     | 
    
         
             
              name: json
         
     | 
| 
       47 
47 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       48 
48 
     | 
    
         
             
                requirements:
         
     | 
| 
       49 
     | 
    
         
            -
                - -  
     | 
| 
      
 49 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       50 
50 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       51 
51 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       52 
52 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       53 
53 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       54 
54 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       55 
55 
     | 
    
         
             
                requirements:
         
     | 
| 
       56 
     | 
    
         
            -
                - -  
     | 
| 
      
 56 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       57 
57 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       58 
58 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       59 
59 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       60 
60 
     | 
    
         
             
              name: archive-zip
         
     | 
| 
       61 
61 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       62 
62 
     | 
    
         
             
                requirements:
         
     | 
| 
       63 
     | 
    
         
            -
                - -  
     | 
| 
      
 63 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       64 
64 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       65 
65 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       66 
66 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       67 
67 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       68 
68 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       69 
69 
     | 
    
         
             
                requirements:
         
     | 
| 
       70 
     | 
    
         
            -
                - -  
     | 
| 
      
 70 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       71 
71 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       72 
72 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       73 
73 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       74 
74 
     | 
    
         
             
              name: test-unit
         
     | 
| 
       75 
75 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       76 
76 
     | 
    
         
             
                requirements:
         
     | 
| 
       77 
     | 
    
         
            -
                - -  
     | 
| 
      
 77 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       78 
78 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       79 
79 
     | 
    
         
             
                    version: 2.4.6
         
     | 
| 
       80 
80 
     | 
    
         
             
              type: :development
         
     | 
| 
       81 
81 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       82 
82 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       83 
83 
     | 
    
         
             
                requirements:
         
     | 
| 
       84 
     | 
    
         
            -
                - -  
     | 
| 
      
 84 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       85 
85 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       86 
86 
     | 
    
         
             
                    version: 2.4.6
         
     | 
| 
       87 
87 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       88 
88 
     | 
    
         
             
              name: test-unit-notify
         
     | 
| 
       89 
89 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       90 
90 
     | 
    
         
             
                requirements:
         
     | 
| 
       91 
     | 
    
         
            -
                - -  
     | 
| 
      
 91 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       92 
92 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       93 
93 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       94 
94 
     | 
    
         
             
              type: :development
         
     | 
| 
       95 
95 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       96 
96 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       97 
97 
     | 
    
         
             
                requirements:
         
     | 
| 
       98 
     | 
    
         
            -
                - -  
     | 
| 
      
 98 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       99 
99 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       100 
100 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       101 
101 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       102 
102 
     | 
    
         
             
              name: rake
         
     | 
| 
       103 
103 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       104 
104 
     | 
    
         
             
                requirements:
         
     | 
| 
       105 
     | 
    
         
            -
                - -  
     | 
| 
      
 105 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       106 
106 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       107 
107 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       108 
108 
     | 
    
         
             
              type: :development
         
     | 
| 
       109 
109 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       110 
110 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       111 
111 
     | 
    
         
             
                requirements:
         
     | 
| 
       112 
     | 
    
         
            -
                - -  
     | 
| 
      
 112 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       113 
113 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       114 
114 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       115 
115 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       116 
116 
     | 
    
         
             
              name: rake-compiler
         
     | 
| 
       117 
117 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       118 
118 
     | 
    
         
             
                requirements:
         
     | 
| 
       119 
     | 
    
         
            -
                - -  
     | 
| 
      
 119 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       120 
120 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       121 
121 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       122 
122 
     | 
    
         
             
              type: :development
         
     | 
| 
       123 
123 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       124 
124 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       125 
125 
     | 
    
         
             
                requirements:
         
     | 
| 
       126 
     | 
    
         
            -
                - -  
     | 
| 
      
 126 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       127 
127 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       128 
128 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       129 
129 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       130 
130 
     | 
    
         
             
              name: bundler
         
     | 
| 
       131 
131 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       132 
132 
     | 
    
         
             
                requirements:
         
     | 
| 
       133 
     | 
    
         
            -
                - -  
     | 
| 
      
 133 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       134 
134 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       135 
135 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       136 
136 
     | 
    
         
             
              type: :development
         
     | 
| 
       137 
137 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       138 
138 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       139 
139 
     | 
    
         
             
                requirements:
         
     | 
| 
       140 
     | 
    
         
            -
                - -  
     | 
| 
      
 140 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       141 
141 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       142 
142 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       143 
143 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       144 
144 
     | 
    
         
             
              name: yard
         
     | 
| 
       145 
145 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       146 
146 
     | 
    
         
             
                requirements:
         
     | 
| 
       147 
     | 
    
         
            -
                - -  
     | 
| 
      
 147 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       148 
148 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       149 
149 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       150 
150 
     | 
    
         
             
              type: :development
         
     | 
| 
       151 
151 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       152 
152 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       153 
153 
     | 
    
         
             
                requirements:
         
     | 
| 
       154 
     | 
    
         
            -
                - -  
     | 
| 
      
 154 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       155 
155 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       156 
156 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       157 
157 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       158 
158 
     | 
    
         
             
              name: packnga
         
     | 
| 
       159 
159 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       160 
160 
     | 
    
         
             
                requirements:
         
     | 
| 
       161 
     | 
    
         
            -
                - -  
     | 
| 
      
 161 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       162 
162 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       163 
163 
     | 
    
         
             
                    version: 0.9.7
         
     | 
| 
       164 
164 
     | 
    
         
             
              type: :development
         
     | 
| 
       165 
165 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       166 
166 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       167 
167 
     | 
    
         
             
                requirements:
         
     | 
| 
       168 
     | 
    
         
            -
                - -  
     | 
| 
      
 168 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       169 
169 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       170 
170 
     | 
    
         
             
                    version: 0.9.7
         
     | 
| 
       171 
171 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       172 
172 
     | 
    
         
             
              name: RedCloth
         
     | 
| 
       173 
173 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       174 
174 
     | 
    
         
             
                requirements:
         
     | 
| 
       175 
     | 
    
         
            -
                - -  
     | 
| 
      
 175 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       176 
176 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       177 
177 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       178 
178 
     | 
    
         
             
              type: :development
         
     | 
| 
       179 
179 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       180 
180 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       181 
181 
     | 
    
         
             
                requirements:
         
     | 
| 
       182 
     | 
    
         
            -
                - -  
     | 
| 
      
 182 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       183 
183 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       184 
184 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       185 
185 
     | 
    
         
             
            description: |-
         
     | 
| 
         @@ -194,160 +194,160 @@ email: 
     | 
|
| 
       194 
194 
     | 
    
         
             
            - y.hayamizu@gmail.com
         
     | 
| 
       195 
195 
     | 
    
         
             
            - dara@shidara.net
         
     | 
| 
       196 
196 
     | 
    
         
             
            executables:
         
     | 
| 
       197 
     | 
    
         
            -
            - groonga-database-inspect
         
     | 
| 
       198 
197 
     | 
    
         
             
            - groonga-index-dump
         
     | 
| 
       199 
     | 
    
         
            -
            - grntest-log-analyze
         
     | 
| 
       200 
198 
     | 
    
         
             
            - grndump
         
     | 
| 
      
 199 
     | 
    
         
            +
            - groonga-database-inspect
         
     | 
| 
      
 200 
     | 
    
         
            +
            - grntest-log-analyze
         
     | 
| 
       201 
201 
     | 
    
         
             
            extensions: []
         
     | 
| 
       202 
202 
     | 
    
         
             
            extra_rdoc_files:
         
     | 
| 
       203 
203 
     | 
    
         
             
            - README.textile
         
     | 
| 
       204 
204 
     | 
    
         
             
            files:
         
     | 
| 
       205 
     | 
    
         
            -
            -  
     | 
| 
      
 205 
     | 
    
         
            +
            - ".yardopts"
         
     | 
| 
       206 
206 
     | 
    
         
             
            - AUTHORS
         
     | 
| 
       207 
     | 
    
         
            -
            - Rakefile
         
     | 
| 
       208 
207 
     | 
    
         
             
            - Gemfile
         
     | 
| 
       209 
     | 
    
         
            -
            - . 
     | 
| 
       210 
     | 
    
         
            -
            -  
     | 
| 
       211 
     | 
    
         
            -
            - doc/text/news.textile
         
     | 
| 
       212 
     | 
    
         
            -
            - doc/text/tutorial.textile
         
     | 
| 
       213 
     | 
    
         
            -
            - rroonga.gemspec
         
     | 
| 
       214 
     | 
    
         
            -
            - rroonga-build.rb
         
     | 
| 
       215 
     | 
    
         
            -
            - extconf.rb
         
     | 
| 
       216 
     | 
    
         
            -
            - lib/groonga/schema.rb
         
     | 
| 
       217 
     | 
    
         
            -
            - lib/groonga/database.rb
         
     | 
| 
       218 
     | 
    
         
            -
            - lib/groonga/geo-point.rb
         
     | 
| 
       219 
     | 
    
         
            -
            - lib/groonga/expression-builder-19.rb
         
     | 
| 
       220 
     | 
    
         
            -
            - lib/groonga/sub-records.rb
         
     | 
| 
       221 
     | 
    
         
            -
            - lib/groonga/pagination.rb
         
     | 
| 
       222 
     | 
    
         
            -
            - lib/groonga/index-column.rb
         
     | 
| 
       223 
     | 
    
         
            -
            - lib/groonga/patricia-trie.rb
         
     | 
| 
       224 
     | 
    
         
            -
            - lib/groonga/database-inspector.rb
         
     | 
| 
       225 
     | 
    
         
            -
            - lib/groonga/context/command-executor.rb
         
     | 
| 
       226 
     | 
    
         
            -
            - lib/groonga/statistic-measurer.rb
         
     | 
| 
       227 
     | 
    
         
            -
            - lib/groonga/grntest-log.rb
         
     | 
| 
       228 
     | 
    
         
            -
            - lib/groonga/dumper.rb
         
     | 
| 
       229 
     | 
    
         
            -
            - lib/groonga/posting.rb
         
     | 
| 
       230 
     | 
    
         
            -
            - lib/groonga/memory-pool.rb
         
     | 
| 
       231 
     | 
    
         
            -
            - lib/groonga/table.rb
         
     | 
| 
       232 
     | 
    
         
            -
            - lib/groonga/query-logger.rb
         
     | 
| 
       233 
     | 
    
         
            -
            - lib/groonga/context.rb
         
     | 
| 
       234 
     | 
    
         
            -
            - lib/groonga/column.rb
         
     | 
| 
       235 
     | 
    
         
            -
            - lib/groonga/record.rb
         
     | 
| 
       236 
     | 
    
         
            -
            - lib/groonga/expression-builder.rb
         
     | 
| 
       237 
     | 
    
         
            -
            - lib/groonga/logger.rb
         
     | 
| 
       238 
     | 
    
         
            -
            - lib/groonga.rb
         
     | 
| 
      
 208 
     | 
    
         
            +
            - README.textile
         
     | 
| 
      
 209 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
       239 
210 
     | 
    
         
             
            - benchmark/common.rb
         
     | 
| 
       240 
     | 
    
         
            -
            - benchmark/repeat-load.rb
         
     | 
| 
       241 
     | 
    
         
            -
            - benchmark/read-write-many-small-items.rb
         
     | 
| 
       242 
211 
     | 
    
         
             
            - benchmark/create-wikipedia-database.rb
         
     | 
| 
       243 
     | 
    
         
            -
            - benchmark/write-many-small-items.rb
         
     | 
| 
      
 212 
     | 
    
         
            +
            - benchmark/read-write-many-small-items.rb
         
     | 
| 
      
 213 
     | 
    
         
            +
            - benchmark/repeat-load.rb
         
     | 
| 
       244 
214 
     | 
    
         
             
            - benchmark/select.rb
         
     | 
| 
       245 
     | 
    
         
            -
            -  
     | 
| 
       246 
     | 
    
         
            -
            -  
     | 
| 
      
 215 
     | 
    
         
            +
            - benchmark/write-many-small-items.rb
         
     | 
| 
      
 216 
     | 
    
         
            +
            - bin/grndump
         
     | 
| 
      
 217 
     | 
    
         
            +
            - bin/grntest-log-analyze
         
     | 
| 
      
 218 
     | 
    
         
            +
            - bin/groonga-database-inspect
         
     | 
| 
      
 219 
     | 
    
         
            +
            - bin/groonga-index-dump
         
     | 
| 
      
 220 
     | 
    
         
            +
            - doc/text/install.textile
         
     | 
| 
      
 221 
     | 
    
         
            +
            - doc/text/news.textile
         
     | 
| 
      
 222 
     | 
    
         
            +
            - doc/text/tutorial.textile
         
     | 
| 
       247 
223 
     | 
    
         
             
            - example/bookmark.rb
         
     | 
| 
       248 
     | 
    
         
            -
            -  
     | 
| 
       249 
     | 
    
         
            -
            - ext/groonga/rb 
     | 
| 
       250 
     | 
    
         
            -
            - ext/groonga/ 
     | 
| 
       251 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       252 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       253 
     | 
    
         
            -
            - ext/groonga/rb-grn-table.c
         
     | 
| 
       254 
     | 
    
         
            -
            - ext/groonga/rb-grn-hash-cursor.c
         
     | 
| 
       255 
     | 
    
         
            -
            - ext/groonga/rb-grn-table-cursor-key-support.c
         
     | 
| 
       256 
     | 
    
         
            -
            - ext/groonga/rb-grn-object.c
         
     | 
| 
       257 
     | 
    
         
            -
            - ext/groonga/rb-grn-double-array-trie.c
         
     | 
| 
       258 
     | 
    
         
            -
            - ext/groonga/rb-grn-table-key-support.c
         
     | 
| 
      
 224 
     | 
    
         
            +
            - example/index-html.rb
         
     | 
| 
      
 225 
     | 
    
         
            +
            - ext/groonga/extconf.rb
         
     | 
| 
      
 226 
     | 
    
         
            +
            - ext/groonga/groonga.def
         
     | 
| 
      
 227 
     | 
    
         
            +
            - ext/groonga/rb-grn-accessor.c
         
     | 
| 
      
 228 
     | 
    
         
            +
            - ext/groonga/rb-grn-array-cursor.c
         
     | 
| 
       259 
229 
     | 
    
         
             
            - ext/groonga/rb-grn-array.c
         
     | 
| 
       260 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
      
 230 
     | 
    
         
            +
            - ext/groonga/rb-grn-column.c
         
     | 
| 
      
 231 
     | 
    
         
            +
            - ext/groonga/rb-grn-context.c
         
     | 
| 
      
 232 
     | 
    
         
            +
            - ext/groonga/rb-grn-database.c
         
     | 
| 
       261 
233 
     | 
    
         
             
            - ext/groonga/rb-grn-double-array-trie-cursor.c
         
     | 
| 
       262 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       263 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       264 
     | 
    
         
            -
            - ext/groonga/rb-grn-normalizer.c
         
     | 
| 
       265 
     | 
    
         
            -
            - ext/groonga/rb-groonga.c
         
     | 
| 
       266 
     | 
    
         
            -
            - ext/groonga/rb-grn-exception.c
         
     | 
| 
       267 
     | 
    
         
            -
            - ext/groonga/rb-grn-variable-size-column.c
         
     | 
| 
      
 234 
     | 
    
         
            +
            - ext/groonga/rb-grn-double-array-trie.c
         
     | 
| 
      
 235 
     | 
    
         
            +
            - ext/groonga/rb-grn-encoding-support.c
         
     | 
| 
       268 
236 
     | 
    
         
             
            - ext/groonga/rb-grn-encoding.c
         
     | 
| 
       269 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
      
 237 
     | 
    
         
            +
            - ext/groonga/rb-grn-exception.c
         
     | 
| 
       270 
238 
     | 
    
         
             
            - ext/groonga/rb-grn-expression-builder.c
         
     | 
| 
       271 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       272 
     | 
    
         
            -
            - ext/groonga/rb-grn-snippet.c
         
     | 
| 
       273 
     | 
    
         
            -
            - ext/groonga/rb-grn-array-cursor.c
         
     | 
| 
       274 
     | 
    
         
            -
            - ext/groonga/rb-grn-type.c
         
     | 
| 
       275 
     | 
    
         
            -
            - ext/groonga/rb-grn-table-cursor.c
         
     | 
| 
      
 239 
     | 
    
         
            +
            - ext/groonga/rb-grn-expression.c
         
     | 
| 
       276 
240 
     | 
    
         
             
            - ext/groonga/rb-grn-fix-size-column.c
         
     | 
| 
      
 241 
     | 
    
         
            +
            - ext/groonga/rb-grn-geo-point.c
         
     | 
| 
      
 242 
     | 
    
         
            +
            - ext/groonga/rb-grn-hash-cursor.c
         
     | 
| 
      
 243 
     | 
    
         
            +
            - ext/groonga/rb-grn-hash.c
         
     | 
| 
      
 244 
     | 
    
         
            +
            - ext/groonga/rb-grn-index-column.c
         
     | 
| 
      
 245 
     | 
    
         
            +
            - ext/groonga/rb-grn-index-cursor.c
         
     | 
| 
       277 
246 
     | 
    
         
             
            - ext/groonga/rb-grn-logger.c
         
     | 
| 
       278 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       279 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
      
 247 
     | 
    
         
            +
            - ext/groonga/rb-grn-normalizer.c
         
     | 
| 
      
 248 
     | 
    
         
            +
            - ext/groonga/rb-grn-object.c
         
     | 
| 
      
 249 
     | 
    
         
            +
            - ext/groonga/rb-grn-operator.c
         
     | 
| 
       280 
250 
     | 
    
         
             
            - ext/groonga/rb-grn-patricia-trie-cursor.c
         
     | 
| 
       281 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       282 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       283 
     | 
    
         
            -
            - ext/groonga/rb-grn-context.c
         
     | 
| 
       284 
     | 
    
         
            -
            - ext/groonga/rb-grn-query-logger.c
         
     | 
| 
      
 251 
     | 
    
         
            +
            - ext/groonga/rb-grn-patricia-trie.c
         
     | 
| 
      
 252 
     | 
    
         
            +
            - ext/groonga/rb-grn-plugin.c
         
     | 
| 
       285 
253 
     | 
    
         
             
            - ext/groonga/rb-grn-posting.c
         
     | 
| 
       286 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
       287 
     | 
    
         
            -
            - ext/groonga/rb-grn- 
     | 
| 
      
 254 
     | 
    
         
            +
            - ext/groonga/rb-grn-procedure.c
         
     | 
| 
      
 255 
     | 
    
         
            +
            - ext/groonga/rb-grn-query-logger.c
         
     | 
| 
      
 256 
     | 
    
         
            +
            - ext/groonga/rb-grn-record.c
         
     | 
| 
      
 257 
     | 
    
         
            +
            - ext/groonga/rb-grn-snippet.c
         
     | 
| 
      
 258 
     | 
    
         
            +
            - ext/groonga/rb-grn-table-cursor-key-support.c
         
     | 
| 
      
 259 
     | 
    
         
            +
            - ext/groonga/rb-grn-table-cursor.c
         
     | 
| 
      
 260 
     | 
    
         
            +
            - ext/groonga/rb-grn-table-key-support.c
         
     | 
| 
      
 261 
     | 
    
         
            +
            - ext/groonga/rb-grn-table.c
         
     | 
| 
      
 262 
     | 
    
         
            +
            - ext/groonga/rb-grn-type.c
         
     | 
| 
      
 263 
     | 
    
         
            +
            - ext/groonga/rb-grn-utils.c
         
     | 
| 
      
 264 
     | 
    
         
            +
            - ext/groonga/rb-grn-variable-size-column.c
         
     | 
| 
      
 265 
     | 
    
         
            +
            - ext/groonga/rb-grn-variable.c
         
     | 
| 
       288 
266 
     | 
    
         
             
            - ext/groonga/rb-grn.h
         
     | 
| 
       289 
     | 
    
         
            -
            - ext/groonga/ 
     | 
| 
       290 
     | 
    
         
            -
            -  
     | 
| 
       291 
     | 
    
         
            -
            -  
     | 
| 
       292 
     | 
    
         
            -
            -  
     | 
| 
       293 
     | 
    
         
            -
            -  
     | 
| 
       294 
     | 
    
         
            -
            -  
     | 
| 
      
 267 
     | 
    
         
            +
            - ext/groonga/rb-groonga.c
         
     | 
| 
      
 268 
     | 
    
         
            +
            - extconf.rb
         
     | 
| 
      
 269 
     | 
    
         
            +
            - lib/1.9/groonga.so
         
     | 
| 
      
 270 
     | 
    
         
            +
            - lib/2.0/groonga.so
         
     | 
| 
      
 271 
     | 
    
         
            +
            - lib/2.1/groonga.so
         
     | 
| 
      
 272 
     | 
    
         
            +
            - lib/groonga.rb
         
     | 
| 
      
 273 
     | 
    
         
            +
            - lib/groonga/column.rb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - lib/groonga/context.rb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - lib/groonga/context/command-executor.rb
         
     | 
| 
      
 276 
     | 
    
         
            +
            - lib/groonga/database-inspector.rb
         
     | 
| 
      
 277 
     | 
    
         
            +
            - lib/groonga/database.rb
         
     | 
| 
      
 278 
     | 
    
         
            +
            - lib/groonga/dumper.rb
         
     | 
| 
      
 279 
     | 
    
         
            +
            - lib/groonga/expression-builder-19.rb
         
     | 
| 
      
 280 
     | 
    
         
            +
            - lib/groonga/expression-builder.rb
         
     | 
| 
      
 281 
     | 
    
         
            +
            - lib/groonga/geo-point.rb
         
     | 
| 
      
 282 
     | 
    
         
            +
            - lib/groonga/grntest-log.rb
         
     | 
| 
      
 283 
     | 
    
         
            +
            - lib/groonga/index-column.rb
         
     | 
| 
      
 284 
     | 
    
         
            +
            - lib/groonga/logger.rb
         
     | 
| 
      
 285 
     | 
    
         
            +
            - lib/groonga/memory-pool.rb
         
     | 
| 
      
 286 
     | 
    
         
            +
            - lib/groonga/pagination.rb
         
     | 
| 
      
 287 
     | 
    
         
            +
            - lib/groonga/patricia-trie.rb
         
     | 
| 
      
 288 
     | 
    
         
            +
            - lib/groonga/posting.rb
         
     | 
| 
      
 289 
     | 
    
         
            +
            - lib/groonga/query-logger.rb
         
     | 
| 
      
 290 
     | 
    
         
            +
            - lib/groonga/record.rb
         
     | 
| 
      
 291 
     | 
    
         
            +
            - lib/groonga/schema.rb
         
     | 
| 
      
 292 
     | 
    
         
            +
            - lib/groonga/statistic-measurer.rb
         
     | 
| 
      
 293 
     | 
    
         
            +
            - lib/groonga/sub-records.rb
         
     | 
| 
      
 294 
     | 
    
         
            +
            - lib/groonga/table.rb
         
     | 
| 
      
 295 
     | 
    
         
            +
            - misc/grnop2ruby.rb
         
     | 
| 
      
 296 
     | 
    
         
            +
            - rroonga-build.rb
         
     | 
| 
      
 297 
     | 
    
         
            +
            - rroonga.gemspec
         
     | 
| 
      
 298 
     | 
    
         
            +
            - test/groonga-test-utils.rb
         
     | 
| 
       295 
299 
     | 
    
         
             
            - test/run-test.rb
         
     | 
| 
      
 300 
     | 
    
         
            +
            - test/test-accessor.rb
         
     | 
| 
      
 301 
     | 
    
         
            +
            - test/test-array.rb
         
     | 
| 
      
 302 
     | 
    
         
            +
            - test/test-column.rb
         
     | 
| 
      
 303 
     | 
    
         
            +
            - test/test-command-select.rb
         
     | 
| 
      
 304 
     | 
    
         
            +
            - test/test-context.rb
         
     | 
| 
      
 305 
     | 
    
         
            +
            - test/test-convert.rb
         
     | 
| 
      
 306 
     | 
    
         
            +
            - test/test-database-dumper.rb
         
     | 
| 
       296 
307 
     | 
    
         
             
            - test/test-database-inspector.rb
         
     | 
| 
       297 
     | 
    
         
            -
            - test/test- 
     | 
| 
       298 
     | 
    
         
            -
            - test/test- 
     | 
| 
       299 
     | 
    
         
            -
            - test/test-expression.rb
         
     | 
| 
       300 
     | 
    
         
            -
            - test/test-version.rb
         
     | 
| 
       301 
     | 
    
         
            -
            - test/test-remote.rb
         
     | 
| 
       302 
     | 
    
         
            -
            - test/test-table-offset-and-limit.rb
         
     | 
| 
       303 
     | 
    
         
            -
            - test/test-expression-builder.rb
         
     | 
| 
       304 
     | 
    
         
            -
            - test/test-sub-records.rb
         
     | 
| 
      
 308 
     | 
    
         
            +
            - test/test-database.rb
         
     | 
| 
      
 309 
     | 
    
         
            +
            - test/test-double-array-trie.rb
         
     | 
| 
       305 
310 
     | 
    
         
             
            - test/test-encoding.rb
         
     | 
| 
       306 
     | 
    
         
            -
            - test/test-snippet.rb
         
     | 
| 
       307 
     | 
    
         
            -
            - test/test-statistic-measurer.rb
         
     | 
| 
       308 
     | 
    
         
            -
            - test/test-index-cursor.rb
         
     | 
| 
       309 
     | 
    
         
            -
            - test/test-type.rb
         
     | 
| 
       310 
     | 
    
         
            -
            - test/test-table-dumper.rb
         
     | 
| 
       311 
     | 
    
         
            -
            - test/test-table-traverse.rb
         
     | 
| 
       312 
     | 
    
         
            -
            - test/test-convert.rb
         
     | 
| 
       313 
     | 
    
         
            -
            - test/test-table.rb
         
     | 
| 
       314 
     | 
    
         
            -
            - test/test-pagination.rb
         
     | 
| 
       315 
     | 
    
         
            -
            - test/groonga-test-utils.rb
         
     | 
| 
       316 
     | 
    
         
            -
            - test/test-logger.rb
         
     | 
| 
       317 
     | 
    
         
            -
            - test/test-context.rb
         
     | 
| 
       318 
     | 
    
         
            -
            - test/test-memory-pool.rb
         
     | 
| 
       319 
     | 
    
         
            -
            - test/test-table-select-weight.rb
         
     | 
| 
       320 
311 
     | 
    
         
             
            - test/test-exception.rb
         
     | 
| 
       321 
     | 
    
         
            -
            - test/test- 
     | 
| 
       322 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 312 
     | 
    
         
            +
            - test/test-expression-builder.rb
         
     | 
| 
      
 313 
     | 
    
         
            +
            - test/test-expression.rb
         
     | 
| 
      
 314 
     | 
    
         
            +
            - test/test-fix-size-column.rb
         
     | 
| 
      
 315 
     | 
    
         
            +
            - test/test-geo-point.rb
         
     | 
| 
       323 
316 
     | 
    
         
             
            - test/test-gqtp.rb
         
     | 
| 
       324 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 317 
     | 
    
         
            +
            - test/test-hash.rb
         
     | 
| 
       325 
318 
     | 
    
         
             
            - test/test-index-column.rb
         
     | 
| 
       326 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 319 
     | 
    
         
            +
            - test/test-index-cursor.rb
         
     | 
| 
      
 320 
     | 
    
         
            +
            - test/test-lock-timeout.rb
         
     | 
| 
      
 321 
     | 
    
         
            +
            - test/test-logger.rb
         
     | 
| 
      
 322 
     | 
    
         
            +
            - test/test-memory-pool.rb
         
     | 
| 
      
 323 
     | 
    
         
            +
            - test/test-normalizer.rb
         
     | 
| 
      
 324 
     | 
    
         
            +
            - test/test-pagination.rb
         
     | 
| 
      
 325 
     | 
    
         
            +
            - test/test-patricia-trie.rb
         
     | 
| 
       327 
326 
     | 
    
         
             
            - test/test-plugin.rb
         
     | 
| 
       328 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 327 
     | 
    
         
            +
            - test/test-procedure.rb
         
     | 
| 
      
 328 
     | 
    
         
            +
            - test/test-record.rb
         
     | 
| 
      
 329 
     | 
    
         
            +
            - test/test-remote.rb
         
     | 
| 
       329 
330 
     | 
    
         
             
            - test/test-schema-create-table.rb
         
     | 
| 
       330 
     | 
    
         
            -
            - test/test- 
     | 
| 
       331 
     | 
    
         
            -
            - test/test-fix-size-column.rb
         
     | 
| 
       332 
     | 
    
         
            -
            - test/test-table-key-support.rb
         
     | 
| 
      
 331 
     | 
    
         
            +
            - test/test-schema-dumper.rb
         
     | 
| 
       333 
332 
     | 
    
         
             
            - test/test-schema-type.rb
         
     | 
| 
      
 333 
     | 
    
         
            +
            - test/test-schema.rb
         
     | 
| 
      
 334 
     | 
    
         
            +
            - test/test-snippet.rb
         
     | 
| 
      
 335 
     | 
    
         
            +
            - test/test-statistic-measurer.rb
         
     | 
| 
      
 336 
     | 
    
         
            +
            - test/test-sub-records.rb
         
     | 
| 
      
 337 
     | 
    
         
            +
            - test/test-table-dumper.rb
         
     | 
| 
      
 338 
     | 
    
         
            +
            - test/test-table-key-support.rb
         
     | 
| 
      
 339 
     | 
    
         
            +
            - test/test-table-offset-and-limit.rb
         
     | 
| 
      
 340 
     | 
    
         
            +
            - test/test-table-select-mecab.rb
         
     | 
| 
      
 341 
     | 
    
         
            +
            - test/test-table-select-normalize.rb
         
     | 
| 
      
 342 
     | 
    
         
            +
            - test/test-table-select-weight.rb
         
     | 
| 
       334 
343 
     | 
    
         
             
            - test/test-table-select.rb
         
     | 
| 
      
 344 
     | 
    
         
            +
            - test/test-table-traverse.rb
         
     | 
| 
      
 345 
     | 
    
         
            +
            - test/test-table.rb
         
     | 
| 
      
 346 
     | 
    
         
            +
            - test/test-type.rb
         
     | 
| 
      
 347 
     | 
    
         
            +
            - test/test-variable-size-column.rb
         
     | 
| 
       335 
348 
     | 
    
         
             
            - test/test-variable.rb
         
     | 
| 
       336 
     | 
    
         
            -
            - test/test-column.rb
         
     | 
| 
       337 
     | 
    
         
            -
            - test/test- 
     | 
| 
       338 
     | 
    
         
            -
            - test/test-table-select-mecab.rb
         
     | 
| 
       339 
     | 
    
         
            -
            - test/test-accessor.rb
         
     | 
| 
       340 
     | 
    
         
            -
            - test/test-database.rb
         
     | 
| 
       341 
     | 
    
         
            -
            - test/test-lock-timeout.rb
         
     | 
| 
       342 
     | 
    
         
            -
            - test/test-double-array-trie.rb
         
     | 
| 
       343 
     | 
    
         
            -
            - test/test-record.rb
         
     | 
| 
       344 
     | 
    
         
            -
            - bin/groonga-database-inspect
         
     | 
| 
       345 
     | 
    
         
            -
            - bin/groonga-index-dump
         
     | 
| 
       346 
     | 
    
         
            -
            - bin/grntest-log-analyze
         
     | 
| 
       347 
     | 
    
         
            -
            - bin/grndump
         
     | 
| 
       348 
     | 
    
         
            -
            - lib/1.9/groonga.so
         
     | 
| 
       349 
     | 
    
         
            -
            - lib/2.0/groonga.so
         
     | 
| 
       350 
     | 
    
         
            -
            - lib/2.1/groonga.so
         
     | 
| 
      
 349 
     | 
    
         
            +
            - test/test-vector-column.rb
         
     | 
| 
      
 350 
     | 
    
         
            +
            - test/test-version.rb
         
     | 
| 
       351 
351 
     | 
    
         
             
            - vendor/local/bin/groonga-benchmark.exe
         
     | 
| 
       352 
352 
     | 
    
         
             
            - vendor/local/bin/groonga.exe
         
     | 
| 
       353 
353 
     | 
    
         
             
            - vendor/local/bin/libgcc_s_sjlj-1.dll
         
     | 
| 
         @@ -362,12 +362,14 @@ files: 
     | 
|
| 
       362 
362 
     | 
    
         
             
            - vendor/local/etc/groonga/groonga.conf
         
     | 
| 
       363 
363 
     | 
    
         
             
            - vendor/local/etc/groonga/httpd/groonga-httpd.conf
         
     | 
| 
       364 
364 
     | 
    
         
             
            - vendor/local/etc/groonga/synonyms.tsv
         
     | 
| 
      
 365 
     | 
    
         
            +
            - vendor/local/include/groonga/groonga.h
         
     | 
| 
       365 
366 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/nfkc.h
         
     | 
| 
       366 
367 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/normalizer.h
         
     | 
| 
       367 
368 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/plugin.h
         
     | 
| 
       368 
369 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/tokenizer.h
         
     | 
| 
       369 
     | 
    
         
            -
            - vendor/local/include/groonga/groonga.h
         
     | 
| 
       370 
370 
     | 
    
         
             
            - vendor/local/include/mecab.h
         
     | 
| 
      
 371 
     | 
    
         
            +
            - vendor/local/include/msgpack.h
         
     | 
| 
      
 372 
     | 
    
         
            +
            - vendor/local/include/msgpack.hpp
         
     | 
| 
       371 
373 
     | 
    
         
             
            - vendor/local/include/msgpack/object.h
         
     | 
| 
       372 
374 
     | 
    
         
             
            - vendor/local/include/msgpack/object.hpp
         
     | 
| 
       373 
375 
     | 
    
         
             
            - vendor/local/include/msgpack/pack.h
         
     | 
| 
         @@ -377,6 +379,7 @@ files: 
     | 
|
| 
       377 
379 
     | 
    
         
             
            - vendor/local/include/msgpack/sbuffer.h
         
     | 
| 
       378 
380 
     | 
    
         
             
            - vendor/local/include/msgpack/sbuffer.hpp
         
     | 
| 
       379 
381 
     | 
    
         
             
            - vendor/local/include/msgpack/sysdep.h
         
     | 
| 
      
 382 
     | 
    
         
            +
            - vendor/local/include/msgpack/type.hpp
         
     | 
| 
       380 
383 
     | 
    
         
             
            - vendor/local/include/msgpack/type/bool.hpp
         
     | 
| 
       381 
384 
     | 
    
         
             
            - vendor/local/include/msgpack/type/define.hpp
         
     | 
| 
       382 
385 
     | 
    
         
             
            - vendor/local/include/msgpack/type/deque.hpp
         
     | 
| 
         @@ -394,7 +397,6 @@ files: 
     | 
|
| 
       394 
397 
     | 
    
         
             
            - vendor/local/include/msgpack/type/tr1/unordered_set.hpp
         
     | 
| 
       395 
398 
     | 
    
         
             
            - vendor/local/include/msgpack/type/tuple.hpp
         
     | 
| 
       396 
399 
     | 
    
         
             
            - vendor/local/include/msgpack/type/vector.hpp
         
     | 
| 
       397 
     | 
    
         
            -
            - vendor/local/include/msgpack/type.hpp
         
     | 
| 
       398 
400 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack.h
         
     | 
| 
       399 
401 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack.hpp
         
     | 
| 
       400 
402 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack_define.h
         
     | 
| 
         @@ -406,8 +408,6 @@ files: 
     | 
|
| 
       406 
408 
     | 
    
         
             
            - vendor/local/include/msgpack/zbuffer.hpp
         
     | 
| 
       407 
409 
     | 
    
         
             
            - vendor/local/include/msgpack/zone.h
         
     | 
| 
       408 
410 
     | 
    
         
             
            - vendor/local/include/msgpack/zone.hpp
         
     | 
| 
       409 
     | 
    
         
            -
            - vendor/local/include/msgpack.h
         
     | 
| 
       410 
     | 
    
         
            -
            - vendor/local/include/msgpack.hpp
         
     | 
| 
       411 
411 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/query_expanders/tsv.a
         
     | 
| 
       412 
412 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/query_expanders/tsv.dll
         
     | 
| 
       413 
413 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a
         
     | 
| 
         @@ -447,23 +447,24 @@ files: 
     | 
|
| 
       447 
447 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_images/geo-points.png
         
     | 
| 
       448 
448 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt
         
     | 
| 
       449 
449 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/community.txt
         
     | 
| 
      
 450 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/contribution.txt
         
     | 
| 
      
 451 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt
         
     | 
| 
       450 
452 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/com.txt
         
     | 
| 
       451 
453 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/cooperation.txt
         
     | 
| 
       452 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt
         
     | 
| 
       453 
454 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/query.txt
         
     | 
| 
       454 
455 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt
         
     | 
| 
       455 
456 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt
         
     | 
| 
       456 
457 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt
         
     | 
| 
       457 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/ 
     | 
| 
      
 458 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt
         
     | 
| 
       458 
459 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/c-api.txt
         
     | 
| 
       459 
460 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt
         
     | 
| 
       460 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt
         
     | 
| 
      
 461 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt
         
     | 
| 
       461 
462 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt
         
     | 
| 
       462 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/contribution.txt
         
     | 
| 
       463 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt
         
     | 
| 
       464 
463 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/development.txt
         
     | 
| 
      
 464 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt
         
     | 
| 
       465 
465 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/geolocation_search.txt
         
     | 
| 
       466 
466 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/index.txt
         
     | 
| 
      
 467 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/install.txt
         
     | 
| 
       467 
468 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt
         
     | 
| 
       468 
469 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt
         
     | 
| 
       469 
470 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt
         
     | 
| 
         @@ -472,14 +473,15 @@ files: 
     | 
|
| 
       472 
473 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt
         
     | 
| 
       473 
474 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt
         
     | 
| 
       474 
475 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt
         
     | 
| 
       475 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/install.txt
         
     | 
| 
       476 
476 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/limitations.txt
         
     | 
| 
      
 477 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/news.txt
         
     | 
| 
       477 
478 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt
         
     | 
| 
       478 
479 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt
         
     | 
| 
       479 
480 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt
         
     | 
| 
       480 
481 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt
         
     | 
| 
       481 
482 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt
         
     | 
| 
       482 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/ 
     | 
| 
      
 483 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference.txt
         
     | 
| 
      
 484 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt
         
     | 
| 
       483 
485 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/global_configurations.txt
         
     | 
| 
       484 
486 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_cache.txt
         
     | 
| 
       485 
487 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_column.txt
         
     | 
| 
         @@ -501,14 +503,15 @@ files: 
     | 
|
| 
       501 
503 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_table_cursor.txt
         
     | 
| 
       502 
504 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_type.txt
         
     | 
| 
       503 
505 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_user_data.txt
         
     | 
| 
       504 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt
         
     | 
| 
      
 506 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt
         
     | 
| 
       505 
507 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt
         
     | 
| 
       506 
508 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt
         
     | 
| 
      
 509 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/columns/pseudo.txt
         
     | 
| 
       507 
510 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt
         
     | 
| 
      
 511 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/command.txt
         
     | 
| 
       508 
512 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/command/command_version.txt
         
     | 
| 
       509 
513 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/command/output_format.txt
         
     | 
| 
       510 
514 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/command/return_code.txt
         
     | 
| 
       511 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/reference/command.txt
         
     | 
| 
       512 
515 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt
         
     | 
| 
       513 
516 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt
         
     | 
| 
       514 
517 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt
         
     | 
| 
         @@ -525,6 +528,7 @@ files: 
     | 
|
| 
       525 
528 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt
         
     | 
| 
       526 
529 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt
         
     | 
| 
       527 
530 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt
         
     | 
| 
      
 531 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt
         
     | 
| 
       528 
532 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt
         
     | 
| 
       529 
533 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt
         
     | 
| 
       530 
534 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt
         
     | 
| 
         @@ -537,7 +541,9 @@ files: 
     | 
|
| 
       537 
541 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt
         
     | 
| 
       538 
542 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt
         
     | 
| 
       539 
543 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt
         
     | 
| 
      
 544 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt
         
     | 
| 
       540 
545 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt
         
     | 
| 
      
 546 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables.txt
         
     | 
| 
       541 
547 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt
         
     | 
| 
       542 
548 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt
         
     | 
| 
       543 
549 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt
         
     | 
| 
         @@ -546,7 +552,6 @@ files: 
     | 
|
| 
       546 
552 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt
         
     | 
| 
       547 
553 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt
         
     | 
| 
       548 
554 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt
         
     | 
| 
       549 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/reference/executables.txt
         
     | 
| 
       550 
555 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/function.txt
         
     | 
| 
       551 
556 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/between.txt
         
     | 
| 
       552 
557 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt
         
     | 
| 
         @@ -559,40 +564,39 @@ files: 
     | 
|
| 
       559 
564 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/rand.txt
         
     | 
| 
       560 
565 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt
         
     | 
| 
       561 
566 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt
         
     | 
| 
      
 567 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt
         
     | 
| 
       562 
568 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
         
     | 
| 
       563 
569 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
         
     | 
| 
       564 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt
         
     | 
| 
       565 
570 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt
         
     | 
| 
       566 
571 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/log.txt
         
     | 
| 
       567 
572 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt
         
     | 
| 
       568 
573 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/output.txt
         
     | 
| 
       569 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/reference/pseudo_column.txt
         
     | 
| 
       570 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt
         
     | 
| 
       571 
574 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders.txt
         
     | 
| 
      
 575 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt
         
     | 
| 
       572 
576 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt
         
     | 
| 
       573 
577 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt
         
     | 
| 
       574 
578 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/tuning.txt
         
     | 
| 
       575 
579 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt
         
     | 
| 
       576 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/ 
     | 
| 
      
 580 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/server.txt
         
     | 
| 
       577 
581 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt
         
     | 
| 
      
 582 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/server/http.txt
         
     | 
| 
       578 
583 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt
         
     | 
| 
       579 
584 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
         
     | 
| 
       580 
585 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt
         
     | 
| 
       581 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/server/http.txt
         
     | 
| 
       582 
586 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/package.txt
         
     | 
| 
       583 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/ 
     | 
| 
      
 587 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/spec.txt
         
     | 
| 
       584 
588 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt
         
     | 
| 
       585 
589 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt
         
     | 
| 
       586 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/ 
     | 
| 
      
 590 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/suggest.txt
         
     | 
| 
       587 
591 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt
         
     | 
| 
       588 
592 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt
         
     | 
| 
       589 
593 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt
         
     | 
| 
       590 
594 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt
         
     | 
| 
       591 
595 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/suggest/tutorial.txt
         
     | 
| 
       592 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/ 
     | 
| 
      
 596 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting.txt
         
     | 
| 
       593 
597 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
         
     | 
| 
       594 
598 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt
         
     | 
| 
       595 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/ 
     | 
| 
      
 599 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt
         
     | 
| 
       596 
600 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt
         
     | 
| 
       597 
601 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt
         
     | 
| 
       598 
602 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt
         
     | 
| 
         @@ -604,7 +608,6 @@ files: 
     | 
|
| 
       604 
608 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt
         
     | 
| 
       605 
609 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt
         
     | 
| 
       606 
610 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt
         
     | 
| 
       607 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt
         
     | 
| 
       608 
611 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif
         
     | 
| 
       609 
612 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/basic.css
         
     | 
| 
       610 
613 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/comment-bright.png
         
     | 
| 
         @@ -632,24 +635,25 @@ files: 
     | 
|
| 
       632 
635 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/websupport.js
         
     | 
| 
       633 
636 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/characteristic.html
         
     | 
| 
       634 
637 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/community.html
         
     | 
| 
      
 638 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/contribution.html
         
     | 
| 
      
 639 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/contribution/development.html
         
     | 
| 
       635 
640 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/development/com.html
         
     | 
| 
       636 
641 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html
         
     | 
| 
       637 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/contribution/development/document.html
         
     | 
| 
       638 
642 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/development/query.html
         
     | 
| 
       639 
643 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/development/release.html
         
     | 
| 
       640 
644 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/development/repository.html
         
     | 
| 
       641 
645 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/development/test.html
         
     | 
| 
       642 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/contribution/ 
     | 
| 
      
 646 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/contribution/documentation.html
         
     | 
| 
       643 
647 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html
         
     | 
| 
       644 
648 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html
         
     | 
| 
       645 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/contribution/documentation.html
         
     | 
| 
      
 649 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html
         
     | 
| 
       646 
650 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/contribution/report.html
         
     | 
| 
       647 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/contribution.html
         
     | 
| 
       648 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/development/travis-ci.html
         
     | 
| 
       649 
651 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/development.html
         
     | 
| 
      
 652 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/development/travis-ci.html
         
     | 
| 
       650 
653 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/genindex.html
         
     | 
| 
       651 
654 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/geolocation_search.html
         
     | 
| 
       652 
655 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/index.html
         
     | 
| 
      
 656 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/install.html
         
     | 
| 
       653 
657 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/install/centos.html
         
     | 
| 
       654 
658 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/install/debian.html
         
     | 
| 
       655 
659 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/install/fedora.html
         
     | 
| 
         @@ -658,15 +662,16 @@ files: 
     | 
|
| 
       658 
662 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/install/solaris.html
         
     | 
| 
       659 
663 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/install/ubuntu.html
         
     | 
| 
       660 
664 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/install/windows.html
         
     | 
| 
       661 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/install.html
         
     | 
| 
       662 
665 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/limitations.html
         
     | 
| 
      
 666 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/news.html
         
     | 
| 
       663 
667 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/news/0.x.html
         
     | 
| 
       664 
668 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/news/1.0.x.html
         
     | 
| 
       665 
669 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/news/1.1.x.html
         
     | 
| 
       666 
670 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/news/1.2.x.html
         
     | 
| 
       667 
671 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/news/senna.html
         
     | 
| 
       668 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/news.html
         
     | 
| 
       669 
672 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/objects.inv
         
     | 
| 
      
 673 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference.html
         
     | 
| 
      
 674 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/api.html
         
     | 
| 
       670 
675 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html
         
     | 
| 
       671 
676 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html
         
     | 
| 
       672 
677 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html
         
     | 
| 
         @@ -688,14 +693,15 @@ files: 
     | 
|
| 
       688 
693 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html
         
     | 
| 
       689 
694 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html
         
     | 
| 
       690 
695 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html
         
     | 
| 
       691 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference/api.html
         
     | 
| 
      
 696 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/api/plugin.html
         
     | 
| 
       692 
697 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/cast.html
         
     | 
| 
       693 
698 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/column.html
         
     | 
| 
      
 699 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html
         
     | 
| 
       694 
700 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/columns/vector.html
         
     | 
| 
      
 701 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/command.html
         
     | 
| 
       695 
702 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/command/command_version.html
         
     | 
| 
       696 
703 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/command/output_format.html
         
     | 
| 
       697 
704 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/command/return_code.html
         
     | 
| 
       698 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference/command.html
         
     | 
| 
       699 
705 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html
         
     | 
| 
       700 
706 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/check.html
         
     | 
| 
       701 
707 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html
         
     | 
| 
         @@ -712,6 +718,7 @@ files: 
     | 
|
| 
       712 
718 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html
         
     | 
| 
       713 
719 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html
         
     | 
| 
       714 
720 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html
         
     | 
| 
      
 721 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html
         
     | 
| 
       715 
722 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/quit.html
         
     | 
| 
       716 
723 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/register.html
         
     | 
| 
       717 
724 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html
         
     | 
| 
         @@ -724,7 +731,9 @@ files: 
     | 
|
| 
       724 
731 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html
         
     | 
| 
       725 
732 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html
         
     | 
| 
       726 
733 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html
         
     | 
| 
      
 734 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html
         
     | 
| 
       727 
735 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html
         
     | 
| 
      
 736 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/executables.html
         
     | 
| 
       728 
737 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html
         
     | 
| 
       729 
738 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html
         
     | 
| 
       730 
739 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html
         
     | 
| 
         @@ -733,7 +742,6 @@ files: 
     | 
|
| 
       733 
742 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html
         
     | 
| 
       734 
743 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html
         
     | 
| 
       735 
744 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html
         
     | 
| 
       736 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference/executables.html
         
     | 
| 
       737 
745 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/function.html
         
     | 
| 
       738 
746 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/between.html
         
     | 
| 
       739 
747 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html
         
     | 
| 
         @@ -746,42 +754,41 @@ files: 
     | 
|
| 
       746 
754 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/rand.html
         
     | 
| 
       747 
755 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html
         
     | 
| 
       748 
756 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html
         
     | 
| 
      
 757 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr.html
         
     | 
| 
       749 
758 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
         
     | 
| 
       750 
759 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
         
     | 
| 
       751 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr.html
         
     | 
| 
       752 
760 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/indexing.html
         
     | 
| 
       753 
761 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/log.html
         
     | 
| 
       754 
762 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/normalizers.html
         
     | 
| 
       755 
763 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/output.html
         
     | 
| 
       756 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html
         
     | 
| 
       757 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html
         
     | 
| 
       758 
764 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/query_expanders.html
         
     | 
| 
      
 765 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html
         
     | 
| 
       759 
766 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/tables.html
         
     | 
| 
       760 
767 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/tokenizers.html
         
     | 
| 
       761 
768 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/tuning.html
         
     | 
| 
       762 
769 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/types.html
         
     | 
| 
       763 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/reference.html
         
     | 
| 
       764 
770 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/search.html
         
     | 
| 
       765 
771 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/searchindex.js
         
     | 
| 
      
 772 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/server.html
         
     | 
| 
       766 
773 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/gqtp.html
         
     | 
| 
      
 774 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/server/http.html
         
     | 
| 
       767 
775 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/http/comparison.html
         
     | 
| 
       768 
776 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html
         
     | 
| 
       769 
777 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/http/groonga.html
         
     | 
| 
       770 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/server/http.html
         
     | 
| 
       771 
778 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/package.html
         
     | 
| 
       772 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/ 
     | 
| 
      
 779 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/spec.html
         
     | 
| 
       773 
780 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/spec/gqtp.html
         
     | 
| 
       774 
781 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/spec/search.html
         
     | 
| 
       775 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/ 
     | 
| 
      
 782 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/suggest.html
         
     | 
| 
       776 
783 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/suggest/completion.html
         
     | 
| 
       777 
784 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/suggest/correction.html
         
     | 
| 
       778 
785 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/suggest/introduction.html
         
     | 
| 
       779 
786 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/suggest/suggestion.html
         
     | 
| 
       780 
787 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/suggest/tutorial.html
         
     | 
| 
       781 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/ 
     | 
| 
      
 788 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/troubleshooting.html
         
     | 
| 
       782 
789 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html
         
     | 
| 
       783 
790 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html
         
     | 
| 
       784 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/ 
     | 
| 
      
 791 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/tutorial.html
         
     | 
| 
       785 
792 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/data.html
         
     | 
| 
       786 
793 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html
         
     | 
| 
       787 
794 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/index.html
         
     | 
| 
         @@ -793,28 +800,28 @@ files: 
     | 
|
| 
       793 
800 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html
         
     | 
| 
       794 
801 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html
         
     | 
| 
       795 
802 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/search.html
         
     | 
| 
       796 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/tutorial.html
         
     | 
| 
       797 
803 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/.buildinfo
         
     | 
| 
       798 
804 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_images/geo-points.png
         
     | 
| 
       799 
805 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt
         
     | 
| 
       800 
806 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/community.txt
         
     | 
| 
      
 807 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt
         
     | 
| 
      
 808 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt
         
     | 
| 
       801 
809 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/com.txt
         
     | 
| 
       802 
810 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/cooperation.txt
         
     | 
| 
       803 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt
         
     | 
| 
       804 
811 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/query.txt
         
     | 
| 
       805 
812 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt
         
     | 
| 
       806 
813 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt
         
     | 
| 
       807 
814 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt
         
     | 
| 
       808 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/ 
     | 
| 
      
 815 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt
         
     | 
| 
       809 
816 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/c-api.txt
         
     | 
| 
       810 
817 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt
         
     | 
| 
       811 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt
         
     | 
| 
      
 818 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt
         
     | 
| 
       812 
819 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt
         
     | 
| 
       813 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt
         
     | 
| 
       814 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt
         
     | 
| 
       815 
820 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/development.txt
         
     | 
| 
      
 821 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt
         
     | 
| 
       816 
822 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/geolocation_search.txt
         
     | 
| 
       817 
823 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/index.txt
         
     | 
| 
      
 824 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/install.txt
         
     | 
| 
       818 
825 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt
         
     | 
| 
       819 
826 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt
         
     | 
| 
       820 
827 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt
         
     | 
| 
         @@ -823,14 +830,15 @@ files: 
     | 
|
| 
       823 
830 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt
         
     | 
| 
       824 
831 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt
         
     | 
| 
       825 
832 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt
         
     | 
| 
       826 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/install.txt
         
     | 
| 
       827 
833 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt
         
     | 
| 
      
 834 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/news.txt
         
     | 
| 
       828 
835 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt
         
     | 
| 
       829 
836 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt
         
     | 
| 
       830 
837 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt
         
     | 
| 
       831 
838 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt
         
     | 
| 
       832 
839 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt
         
     | 
| 
       833 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/ 
     | 
| 
      
 840 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference.txt
         
     | 
| 
      
 841 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt
         
     | 
| 
       834 
842 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/global_configurations.txt
         
     | 
| 
       835 
843 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_cache.txt
         
     | 
| 
       836 
844 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt
         
     | 
| 
         @@ -852,14 +860,15 @@ files: 
     | 
|
| 
       852 
860 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_table_cursor.txt
         
     | 
| 
       853 
861 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_type.txt
         
     | 
| 
       854 
862 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_user_data.txt
         
     | 
| 
       855 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt
         
     | 
| 
      
 863 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt
         
     | 
| 
       856 
864 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt
         
     | 
| 
       857 
865 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt
         
     | 
| 
      
 866 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/pseudo.txt
         
     | 
| 
       858 
867 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt
         
     | 
| 
      
 868 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/command.txt
         
     | 
| 
       859 
869 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/command/command_version.txt
         
     | 
| 
       860 
870 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/command/output_format.txt
         
     | 
| 
       861 
871 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/command/return_code.txt
         
     | 
| 
       862 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/command.txt
         
     | 
| 
       863 
872 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt
         
     | 
| 
       864 
873 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt
         
     | 
| 
       865 
874 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt
         
     | 
| 
         @@ -876,6 +885,7 @@ files: 
     | 
|
| 
       876 
885 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt
         
     | 
| 
       877 
886 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt
         
     | 
| 
       878 
887 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt
         
     | 
| 
      
 888 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt
         
     | 
| 
       879 
889 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt
         
     | 
| 
       880 
890 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt
         
     | 
| 
       881 
891 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt
         
     | 
| 
         @@ -888,7 +898,9 @@ files: 
     | 
|
| 
       888 
898 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt
         
     | 
| 
       889 
899 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt
         
     | 
| 
       890 
900 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt
         
     | 
| 
      
 901 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt
         
     | 
| 
       891 
902 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt
         
     | 
| 
      
 903 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables.txt
         
     | 
| 
       892 
904 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt
         
     | 
| 
       893 
905 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt
         
     | 
| 
       894 
906 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt
         
     | 
| 
         @@ -897,7 +909,6 @@ files: 
     | 
|
| 
       897 
909 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt
         
     | 
| 
       898 
910 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt
         
     | 
| 
       899 
911 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt
         
     | 
| 
       900 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/executables.txt
         
     | 
| 
       901 
912 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/function.txt
         
     | 
| 
       902 
913 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/between.txt
         
     | 
| 
       903 
914 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt
         
     | 
| 
         @@ -910,40 +921,39 @@ files: 
     | 
|
| 
       910 
921 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
         
     | 
| 
       911 
922 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt
         
     | 
| 
       912 
923 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt
         
     | 
| 
      
 924 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
         
     | 
| 
       913 
925 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
         
     | 
| 
       914 
926 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
         
     | 
| 
       915 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
         
     | 
| 
       916 
927 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt
         
     | 
| 
       917 
928 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/log.txt
         
     | 
| 
       918 
929 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt
         
     | 
| 
       919 
930 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/output.txt
         
     | 
| 
       920 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/pseudo_column.txt
         
     | 
| 
       921 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt
         
     | 
| 
       922 
931 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders.txt
         
     | 
| 
      
 932 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt
         
     | 
| 
       923 
933 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt
         
     | 
| 
       924 
934 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt
         
     | 
| 
       925 
935 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/tuning.txt
         
     | 
| 
       926 
936 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt
         
     | 
| 
       927 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/ 
     | 
| 
      
 937 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/server.txt
         
     | 
| 
       928 
938 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt
         
     | 
| 
      
 939 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt
         
     | 
| 
       929 
940 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt
         
     | 
| 
       930 
941 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
         
     | 
| 
       931 
942 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt
         
     | 
| 
       932 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt
         
     | 
| 
       933 
943 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt
         
     | 
| 
       934 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/ 
     | 
| 
      
 944 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/spec.txt
         
     | 
| 
       935 
945 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt
         
     | 
| 
       936 
946 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt
         
     | 
| 
       937 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/ 
     | 
| 
      
 947 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/suggest.txt
         
     | 
| 
       938 
948 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt
         
     | 
| 
       939 
949 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt
         
     | 
| 
       940 
950 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt
         
     | 
| 
       941 
951 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt
         
     | 
| 
       942 
952 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/suggest/tutorial.txt
         
     | 
| 
       943 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/ 
     | 
| 
      
 953 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting.txt
         
     | 
| 
       944 
954 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
         
     | 
| 
       945 
955 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt
         
     | 
| 
       946 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/ 
     | 
| 
      
 956 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt
         
     | 
| 
       947 
957 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt
         
     | 
| 
       948 
958 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt
         
     | 
| 
       949 
959 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt
         
     | 
| 
         @@ -955,7 +965,6 @@ files: 
     | 
|
| 
       955 
965 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt
         
     | 
| 
       956 
966 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt
         
     | 
| 
       957 
967 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt
         
     | 
| 
       958 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt
         
     | 
| 
       959 
968 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif
         
     | 
| 
       960 
969 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/basic.css
         
     | 
| 
       961 
970 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png
         
     | 
| 
         @@ -983,24 +992,25 @@ files: 
     | 
|
| 
       983 
992 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/websupport.js
         
     | 
| 
       984 
993 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/characteristic.html
         
     | 
| 
       985 
994 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/community.html
         
     | 
| 
      
 995 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/contribution.html
         
     | 
| 
      
 996 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/contribution/development.html
         
     | 
| 
       986 
997 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/development/com.html
         
     | 
| 
       987 
998 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html
         
     | 
| 
       988 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/contribution/development/document.html
         
     | 
| 
       989 
999 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/development/query.html
         
     | 
| 
       990 
1000 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/development/release.html
         
     | 
| 
       991 
1001 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html
         
     | 
| 
       992 
1002 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/development/test.html
         
     | 
| 
       993 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/contribution/ 
     | 
| 
      
 1003 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/contribution/documentation.html
         
     | 
| 
       994 
1004 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html
         
     | 
| 
       995 
1005 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html
         
     | 
| 
       996 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/contribution/documentation.html
         
     | 
| 
      
 1006 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html
         
     | 
| 
       997 
1007 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/contribution/report.html
         
     | 
| 
       998 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/contribution.html
         
     | 
| 
       999 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/development/travis-ci.html
         
     | 
| 
       1000 
1008 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/development.html
         
     | 
| 
      
 1009 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/development/travis-ci.html
         
     | 
| 
       1001 
1010 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/genindex.html
         
     | 
| 
       1002 
1011 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/geolocation_search.html
         
     | 
| 
       1003 
1012 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/index.html
         
     | 
| 
      
 1013 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/install.html
         
     | 
| 
       1004 
1014 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/install/centos.html
         
     | 
| 
       1005 
1015 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/install/debian.html
         
     | 
| 
       1006 
1016 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/install/fedora.html
         
     | 
| 
         @@ -1009,15 +1019,16 @@ files: 
     | 
|
| 
       1009 
1019 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/install/solaris.html
         
     | 
| 
       1010 
1020 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/install/ubuntu.html
         
     | 
| 
       1011 
1021 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/install/windows.html
         
     | 
| 
       1012 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/install.html
         
     | 
| 
       1013 
1022 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/limitations.html
         
     | 
| 
      
 1023 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/news.html
         
     | 
| 
       1014 
1024 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/news/0.x.html
         
     | 
| 
       1015 
1025 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/news/1.0.x.html
         
     | 
| 
       1016 
1026 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/news/1.1.x.html
         
     | 
| 
       1017 
1027 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/news/1.2.x.html
         
     | 
| 
       1018 
1028 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/news/senna.html
         
     | 
| 
       1019 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/news.html
         
     | 
| 
       1020 
1029 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/objects.inv
         
     | 
| 
      
 1030 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference.html
         
     | 
| 
      
 1031 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/api.html
         
     | 
| 
       1021 
1032 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html
         
     | 
| 
       1022 
1033 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html
         
     | 
| 
       1023 
1034 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html
         
     | 
| 
         @@ -1039,14 +1050,15 @@ files: 
     | 
|
| 
       1039 
1050 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html
         
     | 
| 
       1040 
1051 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html
         
     | 
| 
       1041 
1052 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html
         
     | 
| 
       1042 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference/api.html
         
     | 
| 
      
 1053 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html
         
     | 
| 
       1043 
1054 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/cast.html
         
     | 
| 
       1044 
1055 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/column.html
         
     | 
| 
      
 1056 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html
         
     | 
| 
       1045 
1057 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html
         
     | 
| 
      
 1058 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/command.html
         
     | 
| 
       1046 
1059 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html
         
     | 
| 
       1047 
1060 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html
         
     | 
| 
       1048 
1061 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html
         
     | 
| 
       1049 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference/command.html
         
     | 
| 
       1050 
1062 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html
         
     | 
| 
       1051 
1063 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/check.html
         
     | 
| 
       1052 
1064 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html
         
     | 
| 
         @@ -1063,6 +1075,7 @@ files: 
     | 
|
| 
       1063 
1075 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html
         
     | 
| 
       1064 
1076 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html
         
     | 
| 
       1065 
1077 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html
         
     | 
| 
      
 1078 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html
         
     | 
| 
       1066 
1079 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html
         
     | 
| 
       1067 
1080 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/register.html
         
     | 
| 
       1068 
1081 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html
         
     | 
| 
         @@ -1075,7 +1088,9 @@ files: 
     | 
|
| 
       1075 
1088 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html
         
     | 
| 
       1076 
1089 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html
         
     | 
| 
       1077 
1090 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html
         
     | 
| 
      
 1091 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html
         
     | 
| 
       1078 
1092 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html
         
     | 
| 
      
 1093 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/executables.html
         
     | 
| 
       1079 
1094 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html
         
     | 
| 
       1080 
1095 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html
         
     | 
| 
       1081 
1096 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html
         
     | 
| 
         @@ -1084,7 +1099,6 @@ files: 
     | 
|
| 
       1084 
1099 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html
         
     | 
| 
       1085 
1100 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html
         
     | 
| 
       1086 
1101 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html
         
     | 
| 
       1087 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference/executables.html
         
     | 
| 
       1088 
1102 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/function.html
         
     | 
| 
       1089 
1103 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/between.html
         
     | 
| 
       1090 
1104 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html
         
     | 
| 
         @@ -1097,42 +1111,41 @@ files: 
     | 
|
| 
       1097 
1111 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html
         
     | 
| 
       1098 
1112 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html
         
     | 
| 
       1099 
1113 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html
         
     | 
| 
      
 1114 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html
         
     | 
| 
       1100 
1115 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
         
     | 
| 
       1101 
1116 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
         
     | 
| 
       1102 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html
         
     | 
| 
       1103 
1117 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/indexing.html
         
     | 
| 
       1104 
1118 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/log.html
         
     | 
| 
       1105 
1119 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/normalizers.html
         
     | 
| 
       1106 
1120 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/output.html
         
     | 
| 
       1107 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html
         
     | 
| 
       1108 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html
         
     | 
| 
       1109 
1121 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html
         
     | 
| 
      
 1122 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html
         
     | 
| 
       1110 
1123 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/tables.html
         
     | 
| 
       1111 
1124 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html
         
     | 
| 
       1112 
1125 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/tuning.html
         
     | 
| 
       1113 
1126 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/types.html
         
     | 
| 
       1114 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/reference.html
         
     | 
| 
       1115 
1127 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/search.html
         
     | 
| 
       1116 
1128 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/searchindex.js
         
     | 
| 
      
 1129 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/server.html
         
     | 
| 
       1117 
1130 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/gqtp.html
         
     | 
| 
      
 1131 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/server/http.html
         
     | 
| 
       1118 
1132 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/http/comparison.html
         
     | 
| 
       1119 
1133 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html
         
     | 
| 
       1120 
1134 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/http/groonga.html
         
     | 
| 
       1121 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/server/http.html
         
     | 
| 
       1122 
1135 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/package.html
         
     | 
| 
       1123 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/ 
     | 
| 
      
 1136 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/spec.html
         
     | 
| 
       1124 
1137 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/spec/gqtp.html
         
     | 
| 
       1125 
1138 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/spec/search.html
         
     | 
| 
       1126 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/ 
     | 
| 
      
 1139 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/suggest.html
         
     | 
| 
       1127 
1140 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/suggest/completion.html
         
     | 
| 
       1128 
1141 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/suggest/correction.html
         
     | 
| 
       1129 
1142 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/suggest/introduction.html
         
     | 
| 
       1130 
1143 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html
         
     | 
| 
       1131 
1144 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html
         
     | 
| 
       1132 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/ 
     | 
| 
      
 1145 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/troubleshooting.html
         
     | 
| 
       1133 
1146 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html
         
     | 
| 
       1134 
1147 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html
         
     | 
| 
       1135 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/ 
     | 
| 
      
 1148 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/tutorial.html
         
     | 
| 
       1136 
1149 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/tutorial/data.html
         
     | 
| 
       1137 
1150 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html
         
     | 
| 
       1138 
1151 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/tutorial/index.html
         
     | 
| 
         @@ -1144,7 +1157,6 @@ files: 
     | 
|
| 
       1144 
1157 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html
         
     | 
| 
       1145 
1158 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html
         
     | 
| 
       1146 
1159 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/tutorial/search.html
         
     | 
| 
       1147 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/tutorial.html
         
     | 
| 
       1148 
1160 
     | 
    
         
             
            - vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh
         
     | 
| 
       1149 
1161 
     | 
    
         
             
            - vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
         
     | 
| 
       1150 
1162 
     | 
    
         
             
            - vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh
         
     | 
| 
         @@ -1202,7 +1214,6 @@ files: 
     | 
|
| 
       1202 
1214 
     | 
    
         
             
            - vendor/local/share/groonga/html/admin/js/jquery-ui-1.8.18.custom.min.js
         
     | 
| 
       1203 
1215 
     | 
    
         
             
            - vendor/local/share/groonga/html/admin/js/jquery.flot-0.7.min.js
         
     | 
| 
       1204 
1216 
     | 
    
         
             
            - vendor/local/share/groonga/html/admin/js/jquery.flot.license.txt
         
     | 
| 
       1205 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js
         
     | 
| 
       1206 
1217 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.png
         
     | 
| 
       1207 
1218 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.svg
         
     | 
| 
       1208 
1219 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/groonga-icon-full-size.png
         
     | 
| 
         @@ -1293,72 +1304,72 @@ require_paths: 
     | 
|
| 
       1293 
1304 
     | 
    
         
             
            - ext/groonga
         
     | 
| 
       1294 
1305 
     | 
    
         
             
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
       1295 
1306 
     | 
    
         
             
              requirements:
         
     | 
| 
       1296 
     | 
    
         
            -
              - -  
     | 
| 
      
 1307 
     | 
    
         
            +
              - - ">="
         
     | 
| 
       1297 
1308 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       1298 
1309 
     | 
    
         
             
                  version: 1.9.3
         
     | 
| 
       1299 
1310 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       1300 
1311 
     | 
    
         
             
              requirements:
         
     | 
| 
       1301 
     | 
    
         
            -
              - -  
     | 
| 
      
 1312 
     | 
    
         
            +
              - - ">="
         
     | 
| 
       1302 
1313 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       1303 
1314 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       1304 
1315 
     | 
    
         
             
            requirements: []
         
     | 
| 
       1305 
1316 
     | 
    
         
             
            rubyforge_project: groonga
         
     | 
| 
       1306 
     | 
    
         
            -
            rubygems_version: 2. 
     | 
| 
      
 1317 
     | 
    
         
            +
            rubygems_version: 2.2.2
         
     | 
| 
       1307 
1318 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       1308 
1319 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       1309 
1320 
     | 
    
         
             
            summary: Ruby bindings for Groonga that provide full text search and column store
         
     | 
| 
       1310 
1321 
     | 
    
         
             
              features.
         
     | 
| 
       1311 
1322 
     | 
    
         
             
            test_files:
         
     | 
| 
       1312 
     | 
    
         
            -
            - test/test-normalizer.rb
         
     | 
| 
       1313 
1323 
     | 
    
         
             
            - test/test-schema.rb
         
     | 
| 
       1314 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1315 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1316 
     | 
    
         
            -
            - test/ 
     | 
| 
       1317 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1318 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1319 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 1324 
     | 
    
         
            +
            - test/test-snippet.rb
         
     | 
| 
      
 1325 
     | 
    
         
            +
            - test/test-variable.rb
         
     | 
| 
      
 1326 
     | 
    
         
            +
            - test/test-geo-point.rb
         
     | 
| 
      
 1327 
     | 
    
         
            +
            - test/test-plugin.rb
         
     | 
| 
      
 1328 
     | 
    
         
            +
            - test/test-accessor.rb
         
     | 
| 
      
 1329 
     | 
    
         
            +
            - test/test-double-array-trie.rb
         
     | 
| 
      
 1330 
     | 
    
         
            +
            - test/test-pagination.rb
         
     | 
| 
      
 1331 
     | 
    
         
            +
            - test/test-memory-pool.rb
         
     | 
| 
      
 1332 
     | 
    
         
            +
            - test/test-column.rb
         
     | 
| 
      
 1333 
     | 
    
         
            +
            - test/test-table-traverse.rb
         
     | 
| 
       1320 
1334 
     | 
    
         
             
            - test/test-expression.rb
         
     | 
| 
       1321 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1322 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 1335 
     | 
    
         
            +
            - test/test-table-select.rb
         
     | 
| 
      
 1336 
     | 
    
         
            +
            - test/test-encoding.rb
         
     | 
| 
      
 1337 
     | 
    
         
            +
            - test/test-logger.rb
         
     | 
| 
      
 1338 
     | 
    
         
            +
            - test/test-schema-create-table.rb
         
     | 
| 
      
 1339 
     | 
    
         
            +
            - test/test-hash.rb
         
     | 
| 
      
 1340 
     | 
    
         
            +
            - test/test-type.rb
         
     | 
| 
       1323 
1341 
     | 
    
         
             
            - test/test-table-offset-and-limit.rb
         
     | 
| 
       1324 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 1342 
     | 
    
         
            +
            - test/test-version.rb
         
     | 
| 
      
 1343 
     | 
    
         
            +
            - test/test-lock-timeout.rb
         
     | 
| 
      
 1344 
     | 
    
         
            +
            - test/test-index-column.rb
         
     | 
| 
      
 1345 
     | 
    
         
            +
            - test/test-table-key-support.rb
         
     | 
| 
      
 1346 
     | 
    
         
            +
            - test/test-vector-column.rb
         
     | 
| 
      
 1347 
     | 
    
         
            +
            - test/test-normalizer.rb
         
     | 
| 
      
 1348 
     | 
    
         
            +
            - test/test-table-select-weight.rb
         
     | 
| 
      
 1349 
     | 
    
         
            +
            - test/test-schema-type.rb
         
     | 
| 
       1325 
1350 
     | 
    
         
             
            - test/test-sub-records.rb
         
     | 
| 
       1326 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1327 
     | 
    
         
            -
            - test/test- 
     | 
| 
      
 1351 
     | 
    
         
            +
            - test/test-procedure.rb
         
     | 
| 
      
 1352 
     | 
    
         
            +
            - test/test-context.rb
         
     | 
| 
      
 1353 
     | 
    
         
            +
            - test/test-gqtp.rb
         
     | 
| 
      
 1354 
     | 
    
         
            +
            - test/test-remote.rb
         
     | 
| 
      
 1355 
     | 
    
         
            +
            - test/test-database-dumper.rb
         
     | 
| 
      
 1356 
     | 
    
         
            +
            - test/test-database-inspector.rb
         
     | 
| 
      
 1357 
     | 
    
         
            +
            - test/test-patricia-trie.rb
         
     | 
| 
      
 1358 
     | 
    
         
            +
            - test/run-test.rb
         
     | 
| 
      
 1359 
     | 
    
         
            +
            - test/test-fix-size-column.rb
         
     | 
| 
       1328 
1360 
     | 
    
         
             
            - test/test-statistic-measurer.rb
         
     | 
| 
       1329 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1330 
     | 
    
         
            -
            - test/test-type.rb
         
     | 
| 
       1331 
     | 
    
         
            -
            - test/test-table-dumper.rb
         
     | 
| 
       1332 
     | 
    
         
            -
            - test/test-table-traverse.rb
         
     | 
| 
       1333 
     | 
    
         
            -
            - test/test-convert.rb
         
     | 
| 
      
 1361 
     | 
    
         
            +
            - test/test-array.rb
         
     | 
| 
       1334 
1362 
     | 
    
         
             
            - test/test-table.rb
         
     | 
| 
       1335 
     | 
    
         
            -
            - test/test-pagination.rb
         
     | 
| 
       1336 
1363 
     | 
    
         
             
            - test/groonga-test-utils.rb
         
     | 
| 
       1337 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1338 
     | 
    
         
            -
            - test/test-context.rb
         
     | 
| 
       1339 
     | 
    
         
            -
            - test/test-memory-pool.rb
         
     | 
| 
       1340 
     | 
    
         
            -
            - test/test-table-select-weight.rb
         
     | 
| 
      
 1364 
     | 
    
         
            +
            - test/test-record.rb
         
     | 
| 
       1341 
1365 
     | 
    
         
             
            - test/test-exception.rb
         
     | 
| 
       1342 
1366 
     | 
    
         
             
            - test/test-table-select-normalize.rb
         
     | 
| 
       1343 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1344 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1345 
     | 
    
         
            -
            - test/test-database 
     | 
| 
       1346 
     | 
    
         
            -
            - test/test-index-column.rb
         
     | 
| 
       1347 
     | 
    
         
            -
            - test/test-geo-point.rb
         
     | 
| 
       1348 
     | 
    
         
            -
            - test/test-plugin.rb
         
     | 
| 
      
 1367 
     | 
    
         
            +
            - test/test-schema-dumper.rb
         
     | 
| 
      
 1368 
     | 
    
         
            +
            - test/test-table-dumper.rb
         
     | 
| 
      
 1369 
     | 
    
         
            +
            - test/test-database.rb
         
     | 
| 
       1349 
1370 
     | 
    
         
             
            - test/test-variable-size-column.rb
         
     | 
| 
       1350 
     | 
    
         
            -
            - test/test-schema-create-table.rb
         
     | 
| 
       1351 
     | 
    
         
            -
            - test/test-array.rb
         
     | 
| 
       1352 
     | 
    
         
            -
            - test/test-fix-size-column.rb
         
     | 
| 
       1353 
     | 
    
         
            -
            - test/test-table-key-support.rb
         
     | 
| 
       1354 
     | 
    
         
            -
            - test/test-schema-type.rb
         
     | 
| 
       1355 
     | 
    
         
            -
            - test/test-table-select.rb
         
     | 
| 
       1356 
     | 
    
         
            -
            - test/test-variable.rb
         
     | 
| 
       1357 
     | 
    
         
            -
            - test/test-column.rb
         
     | 
| 
       1358 
     | 
    
         
            -
            - test/test-patricia-trie.rb
         
     | 
| 
       1359 
1371 
     | 
    
         
             
            - test/test-table-select-mecab.rb
         
     | 
| 
       1360 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1361 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1362 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1363 
     | 
    
         
            -
            - test/test- 
     | 
| 
       1364 
     | 
    
         
            -
            - test/test-record.rb
         
     | 
| 
      
 1372 
     | 
    
         
            +
            - test/test-expression-builder.rb
         
     | 
| 
      
 1373 
     | 
    
         
            +
            - test/test-convert.rb
         
     | 
| 
      
 1374 
     | 
    
         
            +
            - test/test-index-cursor.rb
         
     | 
| 
      
 1375 
     | 
    
         
            +
            - test/test-command-select.rb
         
     |