rroonga 5.0.1-x86-mingw32 → 5.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 +8 -8
 - data/README.md +1 -1
 - data/ext/groonga/rb-grn-logger.c +159 -3
 - data/ext/groonga/rb-grn-plugin.c +17 -1
 - data/ext/groonga/rb-grn-query-logger.c +129 -3
 - 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/2.2/groonga.so +0 -0
 - data/lib/groonga/query-logger.rb +48 -3
 - data/lib/groonga/schema.rb +16 -3
 - data/rroonga-build.rb +3 -3
 - data/test/test-logger.rb +97 -2
 - data/test/test-plugin.rb +5 -1
 - data/test/test-query-logger.rb +149 -0
 - data/test/test-schema.rb +19 -0
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +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-4.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libonig-5.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga.h +1 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +12 -6
 - data/vendor/local/include/groonga/groonga/portability.h +158 -0
 - data/vendor/local/include/msgpack.h +1 -0
 - data/vendor/local/include/msgpack.hpp +2 -1
 - data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
 - data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
 - data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
 - data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
 - data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
 - data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
 - data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
 - data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
 - data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
 - data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
 - data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
 - data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
 - data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
 - data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
 - data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
 - data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
 - data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
 - data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
 - data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
 - data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
 - data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
 - data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
 - data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
 - data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
 - data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
 - data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
 - data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
 - data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
 - data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
 - data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
 - data/vendor/local/include/msgpack/fbuffer.h +3 -4
 - data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
 - data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
 - data/vendor/local/include/msgpack/iterator.hpp +42 -0
 - data/vendor/local/include/msgpack/object.h +51 -30
 - data/vendor/local/include/msgpack/object.hpp +564 -273
 - data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
 - data/vendor/local/include/msgpack/pack.h +23 -17
 - data/vendor/local/include/msgpack/pack.hpp +889 -164
 - data/vendor/local/include/msgpack/pack_define.h +2 -2
 - data/vendor/local/include/msgpack/pack_template.h +452 -356
 - data/vendor/local/include/msgpack/sbuffer.h +43 -37
 - data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
 - data/vendor/local/include/msgpack/sysdep.h +48 -53
 - data/vendor/local/include/msgpack/type.hpp +35 -17
 - data/vendor/local/include/msgpack/unpack.h +62 -44
 - data/vendor/local/include/msgpack/unpack.hpp +1578 -217
 - data/vendor/local/include/msgpack/unpack_define.h +49 -47
 - data/vendor/local/include/msgpack/unpack_template.h +344 -284
 - data/vendor/local/include/msgpack/util.h +23 -0
 - data/vendor/local/include/msgpack/version.h +12 -6
 - data/vendor/local/include/msgpack/version.hpp +44 -0
 - data/vendor/local/include/msgpack/version_master.h +3 -0
 - data/vendor/local/include/msgpack/versioning.hpp +77 -0
 - data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
 - data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
 - data/vendor/local/include/msgpack/zbuffer.h +79 -79
 - data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
 - data/vendor/local/include/msgpack/zone.h +65 -42
 - data/vendor/local/include/msgpack/zone.hpp +10 -445
 - data/vendor/local/include/msgpack_fwd.hpp +28 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.la +41 -0
 - 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 +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
 - data/vendor/local/lib/groonga/plugins/sharding.rb +1 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
 - data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -0
 - 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 +2 -2
 - 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 +2 -2
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
 - 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 +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +38 -41
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +2 -2
 - data/vendor/local/lib/liblz4.a +0 -0
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +4 -4
 - 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/libonig.a +0 -0
 - data/vendor/local/lib/libonig.dll.a +0 -0
 - data/vendor/local/lib/libonig.la +2 -2
 - data/vendor/local/lib/libz.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
 - data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
 - data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
 - data/vendor/local/lib/pkgconfig/zlib.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/sbin/groonga-httpd.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +69 -52
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +6 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
 - data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
 - 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 +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
 - 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 +6 -6
 - 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 +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
 - data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
 - 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 +6 -6
 - 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 +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
 - data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
 - data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
 - data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
 - data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
 - data/vendor/local/share/groonga/html/admin/404.html +133 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
 - data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
 - data/vendor/local/share/groonga/html/admin/index.html +9 -297
 - data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
 - data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
 - data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
 - data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
 - data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
 - data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
 - data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
 - data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
 - data/vendor/local/share/license/groonga-admin/README.md +79 -0
 - data/vendor/local/share/license/msgpack/AUTHORS +0 -1
 - data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
 - data/vendor/local/share/man/man1/groonga.1 +812 -99
 - metadata +138 -55
 - data/doc/text/install.textile +0 -145
 - data/doc/text/tutorial.textile +0 -510
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/include/msgpack/type/define.hpp +0 -3465
 - data/vendor/local/include/msgpack/type/deque.hpp +0 -77
 - data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
 - data/vendor/local/include/msgpack/type/float.hpp +0 -102
 - data/vendor/local/include/msgpack/type/int.hpp +0 -276
 - data/vendor/local/include/msgpack/type/list.hpp +0 -77
 - data/vendor/local/include/msgpack/type/map.hpp +0 -205
 - data/vendor/local/include/msgpack/type/raw.hpp +0 -94
 - data/vendor/local/include/msgpack/type/set.hpp +0 -122
 - data/vendor/local/include/msgpack/type/string.hpp +0 -62
 - data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
 - data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
 - data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
 - data/vendor/local/include/msgpack/type/vector.hpp +0 -81
 - data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/us.png +0 -0
 
    
        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: 5.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 5.0.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86-mingw32
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Kouhei Sutou
         
     | 
| 
         @@ -12,7 +12,7 @@ authors: 
     | 
|
| 
       12 
12 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       14 
14 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       15 
     | 
    
         
            -
            date: 2015- 
     | 
| 
      
 15 
     | 
    
         
            +
            date: 2015-05-18 00:00:00.000000000 Z
         
     | 
| 
       16 
16 
     | 
    
         
             
            dependencies:
         
     | 
| 
       17 
17 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       18 
18 
     | 
    
         
             
              name: pkg-config
         
     | 
| 
         @@ -220,8 +220,6 @@ files: 
     | 
|
| 
       220 
220 
     | 
    
         
             
            - bin/groonga-database-inspect
         
     | 
| 
       221 
221 
     | 
    
         
             
            - bin/groonga-index-dump
         
     | 
| 
       222 
222 
     | 
    
         
             
            - doc/images/sample-schema.png
         
     | 
| 
       223 
     | 
    
         
            -
            - doc/text/install.textile
         
     | 
| 
       224 
     | 
    
         
            -
            - doc/text/tutorial.textile
         
     | 
| 
       225 
223 
     | 
    
         
             
            - example/bookmark.rb
         
     | 
| 
       226 
224 
     | 
    
         
             
            - example/index-html.rb
         
     | 
| 
       227 
225 
     | 
    
         
             
            - ext/groonga/extconf.rb
         
     | 
| 
         @@ -339,6 +337,7 @@ files: 
     | 
|
| 
       339 
337 
     | 
    
         
             
            - test/test-patricia-trie.rb
         
     | 
| 
       340 
338 
     | 
    
         
             
            - test/test-plugin.rb
         
     | 
| 
       341 
339 
     | 
    
         
             
            - test/test-procedure.rb
         
     | 
| 
      
 340 
     | 
    
         
            +
            - test/test-query-logger.rb
         
     | 
| 
       342 
341 
     | 
    
         
             
            - test/test-record.rb
         
     | 
| 
       343 
342 
     | 
    
         
             
            - test/test-remote.rb
         
     | 
| 
       344 
343 
     | 
    
         
             
            - test/test-schema-create-table.rb
         
     | 
| 
         @@ -370,7 +369,7 @@ files: 
     | 
|
| 
       370 
369 
     | 
    
         
             
            - vendor/local/bin/libgcc_s_sjlj-1.dll
         
     | 
| 
       371 
370 
     | 
    
         
             
            - vendor/local/bin/libgroonga-0.dll
         
     | 
| 
       372 
371 
     | 
    
         
             
            - vendor/local/bin/libmecab-1.dll
         
     | 
| 
       373 
     | 
    
         
            -
            - vendor/local/bin/libmsgpack- 
     | 
| 
      
 372 
     | 
    
         
            +
            - vendor/local/bin/libmsgpack-4.dll
         
     | 
| 
       374 
373 
     | 
    
         
             
            - vendor/local/bin/libmsgpackc-2.dll
         
     | 
| 
       375 
374 
     | 
    
         
             
            - vendor/local/bin/libonig-5.dll
         
     | 
| 
       376 
375 
     | 
    
         
             
            - vendor/local/bin/libstdc++-6.dll
         
     | 
| 
         @@ -412,6 +411,7 @@ files: 
     | 
|
| 
       412 
411 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/obj.h
         
     | 
| 
       413 
412 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/output.h
         
     | 
| 
       414 
413 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/plugin.h
         
     | 
| 
      
 414 
     | 
    
         
            +
            - vendor/local/include/groonga/groonga/portability.h
         
     | 
| 
       415 
415 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/request_canceler.h
         
     | 
| 
       416 
416 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/scorer.h
         
     | 
| 
       417 
417 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/token.h
         
     | 
| 
         @@ -424,10 +424,74 @@ files: 
     | 
|
| 
       424 
424 
     | 
    
         
             
            - vendor/local/include/mecab.h
         
     | 
| 
       425 
425 
     | 
    
         
             
            - vendor/local/include/msgpack.h
         
     | 
| 
       426 
426 
     | 
    
         
             
            - vendor/local/include/msgpack.hpp
         
     | 
| 
      
 427 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/bool.hpp
         
     | 
| 
      
 428 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/bool_fwd.hpp
         
     | 
| 
      
 429 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/char_ptr.hpp
         
     | 
| 
      
 430 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp
         
     | 
| 
      
 431 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/check_container_size.hpp
         
     | 
| 
      
 432 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/array.hpp
         
     | 
| 
      
 433 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp
         
     | 
| 
      
 434 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp
         
     | 
| 
      
 435 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp
         
     | 
| 
      
 436 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp
         
     | 
| 
      
 437 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp
         
     | 
| 
      
 438 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp
         
     | 
| 
      
 439 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp
         
     | 
| 
      
 440 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp
         
     | 
| 
      
 441 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp
         
     | 
| 
      
 442 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp
         
     | 
| 
      
 443 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp
         
     | 
| 
      
 444 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/define.hpp
         
     | 
| 
      
 445 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/deque.hpp
         
     | 
| 
      
 446 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/deque_fwd.hpp
         
     | 
| 
      
 447 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp
         
     | 
| 
      
 448 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp
         
     | 
| 
      
 449 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp
         
     | 
| 
      
 450 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp
         
     | 
| 
      
 451 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp
         
     | 
| 
      
 452 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp
         
     | 
| 
      
 453 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/fixint.hpp
         
     | 
| 
      
 454 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/fixint_fwd.hpp
         
     | 
| 
      
 455 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/float.hpp
         
     | 
| 
      
 456 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/float_fwd.hpp
         
     | 
| 
      
 457 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/int.hpp
         
     | 
| 
      
 458 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/int_fwd.hpp
         
     | 
| 
      
 459 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/list.hpp
         
     | 
| 
      
 460 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/list_fwd.hpp
         
     | 
| 
      
 461 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/map.hpp
         
     | 
| 
      
 462 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/map_fwd.hpp
         
     | 
| 
      
 463 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp
         
     | 
| 
      
 464 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp
         
     | 
| 
      
 465 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/nil.hpp
         
     | 
| 
      
 466 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/nil_fwd.hpp
         
     | 
| 
      
 467 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/pair.hpp
         
     | 
| 
      
 468 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/pair_fwd.hpp
         
     | 
| 
      
 469 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/raw.hpp
         
     | 
| 
      
 470 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/raw_fwd.hpp
         
     | 
| 
      
 471 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/set.hpp
         
     | 
| 
      
 472 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/set_fwd.hpp
         
     | 
| 
      
 473 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/string.hpp
         
     | 
| 
      
 474 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/string_fwd.hpp
         
     | 
| 
      
 475 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp
         
     | 
| 
      
 476 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp
         
     | 
| 
      
 477 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp
         
     | 
| 
      
 478 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp
         
     | 
| 
      
 479 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/vector.hpp
         
     | 
| 
      
 480 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/vector_bool.hpp
         
     | 
| 
      
 481 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp
         
     | 
| 
      
 482 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/vector_char.hpp
         
     | 
| 
      
 483 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp
         
     | 
| 
      
 484 
     | 
    
         
            +
            - vendor/local/include/msgpack/adaptor/vector_fwd.hpp
         
     | 
| 
      
 485 
     | 
    
         
            +
            - vendor/local/include/msgpack/cpp_config.hpp
         
     | 
| 
      
 486 
     | 
    
         
            +
            - vendor/local/include/msgpack/detail/cpp03_zone.hpp
         
     | 
| 
      
 487 
     | 
    
         
            +
            - vendor/local/include/msgpack/detail/cpp11_zone.hpp
         
     | 
| 
       427 
488 
     | 
    
         
             
            - vendor/local/include/msgpack/fbuffer.h
         
     | 
| 
       428 
489 
     | 
    
         
             
            - vendor/local/include/msgpack/fbuffer.hpp
         
     | 
| 
      
 490 
     | 
    
         
            +
            - vendor/local/include/msgpack/gcc_atomic.h
         
     | 
| 
      
 491 
     | 
    
         
            +
            - vendor/local/include/msgpack/iterator.hpp
         
     | 
| 
       429 
492 
     | 
    
         
             
            - vendor/local/include/msgpack/object.h
         
     | 
| 
       430 
493 
     | 
    
         
             
            - vendor/local/include/msgpack/object.hpp
         
     | 
| 
      
 494 
     | 
    
         
            +
            - vendor/local/include/msgpack/object_fwd.hpp
         
     | 
| 
       431 
495 
     | 
    
         
             
            - vendor/local/include/msgpack/pack.h
         
     | 
| 
       432 
496 
     | 
    
         
             
            - vendor/local/include/msgpack/pack.hpp
         
     | 
| 
       433 
497 
     | 
    
         
             
            - vendor/local/include/msgpack/pack_define.h
         
     | 
| 
         @@ -436,39 +500,31 @@ files: 
     | 
|
| 
       436 
500 
     | 
    
         
             
            - vendor/local/include/msgpack/sbuffer.hpp
         
     | 
| 
       437 
501 
     | 
    
         
             
            - vendor/local/include/msgpack/sysdep.h
         
     | 
| 
       438 
502 
     | 
    
         
             
            - vendor/local/include/msgpack/type.hpp
         
     | 
| 
       439 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/bool.hpp
         
     | 
| 
       440 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/define.hpp
         
     | 
| 
       441 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/deque.hpp
         
     | 
| 
       442 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/fixint.hpp
         
     | 
| 
       443 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/float.hpp
         
     | 
| 
       444 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/int.hpp
         
     | 
| 
       445 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/list.hpp
         
     | 
| 
       446 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/map.hpp
         
     | 
| 
       447 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/nil.hpp
         
     | 
| 
       448 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/pair.hpp
         
     | 
| 
       449 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/raw.hpp
         
     | 
| 
       450 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/set.hpp
         
     | 
| 
       451 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/string.hpp
         
     | 
| 
       452 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/tr1/unordered_map.hpp
         
     | 
| 
       453 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/tr1/unordered_set.hpp
         
     | 
| 
       454 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/tuple.hpp
         
     | 
| 
       455 
     | 
    
         
            -
            - vendor/local/include/msgpack/type/vector.hpp
         
     | 
| 
       456 
503 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack.h
         
     | 
| 
       457 
504 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack.hpp
         
     | 
| 
       458 
505 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack_define.h
         
     | 
| 
       459 
506 
     | 
    
         
             
            - vendor/local/include/msgpack/unpack_template.h
         
     | 
| 
      
 507 
     | 
    
         
            +
            - vendor/local/include/msgpack/util.h
         
     | 
| 
       460 
508 
     | 
    
         
             
            - vendor/local/include/msgpack/version.h
         
     | 
| 
      
 509 
     | 
    
         
            +
            - vendor/local/include/msgpack/version.hpp
         
     | 
| 
      
 510 
     | 
    
         
            +
            - vendor/local/include/msgpack/version_master.h
         
     | 
| 
      
 511 
     | 
    
         
            +
            - vendor/local/include/msgpack/versioning.hpp
         
     | 
| 
       461 
512 
     | 
    
         
             
            - vendor/local/include/msgpack/vrefbuffer.h
         
     | 
| 
       462 
513 
     | 
    
         
             
            - vendor/local/include/msgpack/vrefbuffer.hpp
         
     | 
| 
       463 
514 
     | 
    
         
             
            - vendor/local/include/msgpack/zbuffer.h
         
     | 
| 
       464 
515 
     | 
    
         
             
            - vendor/local/include/msgpack/zbuffer.hpp
         
     | 
| 
       465 
516 
     | 
    
         
             
            - vendor/local/include/msgpack/zone.h
         
     | 
| 
       466 
517 
     | 
    
         
             
            - vendor/local/include/msgpack/zone.hpp
         
     | 
| 
      
 518 
     | 
    
         
            +
            - vendor/local/include/msgpack_fwd.hpp
         
     | 
| 
       467 
519 
     | 
    
         
             
            - vendor/local/include/oniggnu.h
         
     | 
| 
       468 
520 
     | 
    
         
             
            - vendor/local/include/onigposix.h
         
     | 
| 
       469 
521 
     | 
    
         
             
            - vendor/local/include/oniguruma.h
         
     | 
| 
       470 
522 
     | 
    
         
             
            - vendor/local/include/zconf.h
         
     | 
| 
       471 
523 
     | 
    
         
             
            - vendor/local/include/zlib.h
         
     | 
| 
      
 524 
     | 
    
         
            +
            - vendor/local/lib/groonga/plugins/functions/vector.a
         
     | 
| 
      
 525 
     | 
    
         
            +
            - vendor/local/lib/groonga/plugins/functions/vector.dll
         
     | 
| 
      
 526 
     | 
    
         
            +
            - vendor/local/lib/groonga/plugins/functions/vector.dll.a
         
     | 
| 
      
 527 
     | 
    
         
            +
            - vendor/local/lib/groonga/plugins/functions/vector.la
         
     | 
| 
       472 
528 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/query_expanders/tsv.a
         
     | 
| 
       473 
529 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/query_expanders/tsv.dll
         
     | 
| 
       474 
530 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a
         
     | 
| 
         @@ -485,6 +541,7 @@ files: 
     | 
|
| 
       485 
541 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/sharding/logical_count.rb
         
     | 
| 
       486 
542 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb
         
     | 
| 
       487 
543 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb
         
     | 
| 
      
 544 
     | 
    
         
            +
            - vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb
         
     | 
| 
       488 
545 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/suggest/suggest.a
         
     | 
| 
       489 
546 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/suggest/suggest.dll
         
     | 
| 
       490 
547 
     | 
    
         
             
            - vendor/local/lib/groonga/plugins/suggest/suggest.dll.a
         
     | 
| 
         @@ -706,6 +763,7 @@ files: 
     | 
|
| 
       706 
763 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/rand.txt
         
     | 
| 
       707 
764 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt
         
     | 
| 
       708 
765 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt
         
     | 
| 
      
 766 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt
         
     | 
| 
       709 
767 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt
         
     | 
| 
       710 
768 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
         
     | 
| 
       711 
769 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
         
     | 
| 
         @@ -770,7 +828,6 @@ files: 
     | 
|
| 
       770 
828 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/file.png
         
     | 
| 
       771 
829 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/groonga.css
         
     | 
| 
       772 
830 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/header-background.png
         
     | 
| 
       773 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_static/jp.png
         
     | 
| 
       774 
831 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/jquery.js
         
     | 
| 
       775 
832 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/logo.png
         
     | 
| 
       776 
833 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/minus.png
         
     | 
| 
         @@ -781,7 +838,6 @@ files: 
     | 
|
| 
       781 
838 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/underscore.js
         
     | 
| 
       782 
839 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/up-pressed.png
         
     | 
| 
       783 
840 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/up.png
         
     | 
| 
       784 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_static/us.png
         
     | 
| 
       785 
841 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/websupport.js
         
     | 
| 
       786 
842 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/characteristic.html
         
     | 
| 
       787 
843 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/client.html
         
     | 
| 
         @@ -925,6 +981,7 @@ files: 
     | 
|
| 
       925 
981 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/rand.html
         
     | 
| 
       926 
982 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html
         
     | 
| 
       927 
983 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html
         
     | 
| 
      
 984 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html
         
     | 
| 
       928 
985 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr.html
         
     | 
| 
       929 
986 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
         
     | 
| 
       930 
987 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
         
     | 
| 
         @@ -1123,6 +1180,7 @@ files: 
     | 
|
| 
       1123 
1180 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
         
     | 
| 
       1124 
1181 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt
         
     | 
| 
       1125 
1182 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt
         
     | 
| 
      
 1183 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt
         
     | 
| 
       1126 
1184 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
         
     | 
| 
       1127 
1185 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
         
     | 
| 
       1128 
1186 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
         
     | 
| 
         @@ -1187,7 +1245,6 @@ files: 
     | 
|
| 
       1187 
1245 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/file.png
         
     | 
| 
       1188 
1246 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/groonga.css
         
     | 
| 
       1189 
1247 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/header-background.png
         
     | 
| 
       1190 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_static/jp.png
         
     | 
| 
       1191 
1248 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/jquery.js
         
     | 
| 
       1192 
1249 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/logo.png
         
     | 
| 
       1193 
1250 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/minus.png
         
     | 
| 
         @@ -1198,7 +1255,6 @@ files: 
     | 
|
| 
       1198 
1255 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/underscore.js
         
     | 
| 
       1199 
1256 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png
         
     | 
| 
       1200 
1257 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/up.png
         
     | 
| 
       1201 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_static/us.png
         
     | 
| 
       1202 
1258 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/websupport.js
         
     | 
| 
       1203 
1259 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/characteristic.html
         
     | 
| 
       1204 
1260 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/client.html
         
     | 
| 
         @@ -1342,6 +1398,7 @@ files: 
     | 
|
| 
       1342 
1398 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html
         
     | 
| 
       1343 
1399 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html
         
     | 
| 
       1344 
1400 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html
         
     | 
| 
      
 1401 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html
         
     | 
| 
       1345 
1402 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html
         
     | 
| 
       1346 
1403 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
         
     | 
| 
       1347 
1404 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
         
     | 
| 
         @@ -1424,37 +1481,60 @@ files: 
     | 
|
| 
       1424 
1481 
     | 
    
         
             
            - vendor/local/share/groonga/examples/dictionary/init-db.sh
         
     | 
| 
       1425 
1482 
     | 
    
         
             
            - vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
         
     | 
| 
       1426 
1483 
     | 
    
         
             
            - vendor/local/share/groonga/examples/dictionary/readme.txt
         
     | 
| 
       1427 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/groonga-admin.css
         
     | 
| 
       1428 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
         
     | 
| 
       1429 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
         
     | 
| 
       1430 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
         
     | 
| 
       1431 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
         
     | 
| 
       1432 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
         
     | 
| 
       1433 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
         
     | 
| 
       1434 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
         
     | 
| 
       1435 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
         
     | 
| 
       1436 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png
         
     | 
| 
       1437 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_2e83ff_256x240.png
         
     | 
| 
       1438 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_469bdd_256x240.png
         
     | 
| 
       1439 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_6da8d5_256x240.png
         
     | 
| 
       1440 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_cd0a0a_256x240.png
         
     | 
| 
       1441 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png
         
     | 
| 
       1442 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png
         
     | 
| 
       1443 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css
         
     | 
| 
      
 1484 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/groonga-admin.css
         
     | 
| 
      
 1485 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
         
     | 
| 
      
 1486 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
         
     | 
| 
      
 1487 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
         
     | 
| 
      
 1488 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
         
     | 
| 
      
 1489 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
         
     | 
| 
      
 1490 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
         
     | 
| 
      
 1491 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
         
     | 
| 
      
 1492 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
         
     | 
| 
      
 1493 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_217bc0_256x240.png
         
     | 
| 
      
 1494 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_2e83ff_256x240.png
         
     | 
| 
      
 1495 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_469bdd_256x240.png
         
     | 
| 
      
 1496 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_6da8d5_256x240.png
         
     | 
| 
      
 1497 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_cd0a0a_256x240.png
         
     | 
| 
      
 1498 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_d8e7f3_256x240.png
         
     | 
| 
      
 1499 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/images/ui-icons_f9bd01_256x240.png
         
     | 
| 
      
 1500 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/css/redmond/jquery-ui-1.8.18.custom.css
         
     | 
| 
      
 1501 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/favicon.ico
         
     | 
| 
      
 1502 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/favicon.png
         
     | 
| 
      
 1503 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/favicon.svg
         
     | 
| 
      
 1504 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/images/groonga.png
         
     | 
| 
      
 1505 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/images/groonga.svg
         
     | 
| 
      
 1506 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/images/loading.gif
         
     | 
| 
      
 1507 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/index.html
         
     | 
| 
      
 1508 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/index.ja.html
         
     | 
| 
      
 1509 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/js/groonga-admin.ja.js
         
     | 
| 
      
 1510 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/js/groonga-admin.js
         
     | 
| 
      
 1511 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/js/jquery-1.7.2.js
         
     | 
| 
      
 1512 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/js/jquery-ui-1.8.18.custom.js
         
     | 
| 
      
 1513 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/js/jquery.flot-0.7.js
         
     | 
| 
      
 1514 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin.old/js/jquery.flot.license.txt
         
     | 
| 
      
 1515 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/.htaccess
         
     | 
| 
      
 1516 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/404.html
         
     | 
| 
      
 1517 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot
         
     | 
| 
      
 1518 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg
         
     | 
| 
      
 1519 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf
         
     | 
| 
      
 1520 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff
         
     | 
| 
       1444 
1521 
     | 
    
         
             
            - vendor/local/share/groonga/html/admin/favicon.ico
         
     | 
| 
       1445 
1522 
     | 
    
         
             
            - vendor/local/share/groonga/html/admin/favicon.png
         
     | 
| 
       1446 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1447 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/images/groonga.png
         
     | 
| 
       1448 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/images/groonga.svg
         
     | 
| 
       1449 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/images/loading.gif
         
     | 
| 
      
 1523 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png
         
     | 
| 
       1450 
1524 
     | 
    
         
             
            - vendor/local/share/groonga/html/admin/index.html
         
     | 
| 
       1451 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1452 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1453 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1454 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1455 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1456 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
       1457 
     | 
    
         
            -
            - vendor/local/share/groonga/html/admin/ 
     | 
| 
      
 1525 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/robots.txt
         
     | 
| 
      
 1526 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js
         
     | 
| 
      
 1527 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js
         
     | 
| 
      
 1528 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js
         
     | 
| 
      
 1529 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/styles/main.0390285b.css
         
     | 
| 
      
 1530 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css
         
     | 
| 
      
 1531 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/columns/new.html
         
     | 
| 
      
 1532 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/columns/show.html
         
     | 
| 
      
 1533 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/tables/index.html
         
     | 
| 
      
 1534 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/tables/new.html
         
     | 
| 
      
 1535 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/tables/search.html
         
     | 
| 
      
 1536 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/tables/show.html
         
     | 
| 
      
 1537 
     | 
    
         
            +
            - vendor/local/share/groonga/html/admin/views/top.html
         
     | 
| 
       1458 
1538 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.png
         
     | 
| 
       1459 
1539 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.svg
         
     | 
| 
       1460 
1540 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/groonga-icon-full-size.png
         
     | 
| 
         @@ -1505,6 +1585,8 @@ files: 
     | 
|
| 
       1505 
1585 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.svg
         
     | 
| 
       1506 
1586 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/rroonga-logo.png
         
     | 
| 
       1507 
1587 
     | 
    
         
             
            - vendor/local/share/groonga/images/logo/rroonga-logo.svg
         
     | 
| 
      
 1588 
     | 
    
         
            +
            - vendor/local/share/license/groonga-admin/LICENSE
         
     | 
| 
      
 1589 
     | 
    
         
            +
            - vendor/local/share/license/groonga-admin/README.md
         
     | 
| 
       1508 
1590 
     | 
    
         
             
            - vendor/local/share/license/groonga/COPYING
         
     | 
| 
       1509 
1591 
     | 
    
         
             
            - vendor/local/share/license/groonga/README.md
         
     | 
| 
       1510 
1592 
     | 
    
         
             
            - vendor/local/share/license/lz4/LICENSE
         
     | 
| 
         @@ -1567,7 +1649,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       1567 
1649 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       1568 
1650 
     | 
    
         
             
            requirements: []
         
     | 
| 
       1569 
1651 
     | 
    
         
             
            rubyforge_project: groonga
         
     | 
| 
       1570 
     | 
    
         
            -
            rubygems_version: 2.4. 
     | 
| 
      
 1652 
     | 
    
         
            +
            rubygems_version: 2.4.7
         
     | 
| 
       1571 
1653 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       1572 
1654 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       1573 
1655 
     | 
    
         
             
            summary: Ruby bindings for Groonga that provide full text search and column store
         
     | 
| 
         @@ -1597,6 +1679,7 @@ test_files: 
     | 
|
| 
       1597 
1679 
     | 
    
         
             
            - test/test-table-select-mecab.rb
         
     | 
| 
       1598 
1680 
     | 
    
         
             
            - test/test-convert.rb
         
     | 
| 
       1599 
1681 
     | 
    
         
             
            - test/test-variable.rb
         
     | 
| 
      
 1682 
     | 
    
         
            +
            - test/test-query-logger.rb
         
     | 
| 
       1600 
1683 
     | 
    
         
             
            - test/test-schema-create-table.rb
         
     | 
| 
       1601 
1684 
     | 
    
         
             
            - test/test-table-select.rb
         
     | 
| 
       1602 
1685 
     | 
    
         
             
            - test/test-table-group.rb
         
     | 
    
        data/doc/text/install.textile
    DELETED
    
    | 
         @@ -1,145 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            h1. Install
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            This document describes how to install Rroonga.
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
            You can install Rroonga by RubyGems. It is the standard way for Ruby
         
     | 
| 
       6 
     | 
    
         
            -
            libraries.
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            Rroonga is depends on Groonga. So you need to install both Groonga and
         
     | 
| 
       9 
     | 
    
         
            -
            Rroonga. You can't install Groonga by RubyGems because it isn't Ruby
         
     | 
| 
       10 
     | 
    
         
            -
            library. But don't worry. Rroonga provides the following options for
         
     | 
| 
       11 
     | 
    
         
            -
            easy to install:
         
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
            * Rroonga downloads, builds and installs Groonga automatically. You
         
     | 
| 
       14 
     | 
    
         
            -
              don't need to do them explicitly.
         
     | 
| 
       15 
     | 
    
         
            -
            * Rroonga uses Groonga installed by your packaging system.
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
            The following sections describe the above in detail.
         
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
            h2. Install with auto Groonga build
         
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
            Rroonga searches Groonga on install. If Rroonga can't find
         
     | 
| 
       22 
     | 
    
         
            -
            Groonga, Rroonga downloads, builds and installs Groonga
         
     | 
| 
       23 
     | 
    
         
            -
            automatically.
         
     | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
            Type the following command to install Rroonga and Groonga. You don't
         
     | 
| 
       26 
     | 
    
         
            -
            need to install Groonga explicitly:
         
     | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
            <pre>
         
     | 
| 
       29 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       30 
     | 
    
         
            -
            % gem install rroonga
         
     | 
| 
       31 
     | 
    
         
            -
            </pre>
         
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
     | 
    
         
            -
            h2. Install with Groonga package
         
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
            You can use Groonga package on you packaging system instead of
         
     | 
| 
       36 
     | 
    
         
            -
            building Groonga by yourself. There are the following advantages for
         
     | 
| 
       37 
     | 
    
         
            -
            this option:
         
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
       39 
     | 
    
         
            -
            * It reduces installation time.
         
     | 
| 
       40 
     | 
    
         
            -
            * It doesn't fail on building Groonga.
         
     | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
       42 
     | 
    
         
            -
            h3. Windows
         
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
            Rroonga gem for Windows includes both pre-compiled Rroonga and Groonga
         
     | 
| 
       45 
     | 
    
         
            -
            in the gem. So what you need to do is you just install rroonga gem.
         
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
            Type the following command on Ruby console:
         
     | 
| 
       48 
     | 
    
         
            -
             
     | 
| 
       49 
     | 
    
         
            -
            <pre>
         
     | 
| 
       50 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       51 
     | 
    
         
            -
            > gem install rroonga
         
     | 
| 
       52 
     | 
    
         
            -
            </pre>
         
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
       54 
     | 
    
         
            -
            This document assumes that you're using "RubyInstaller for
         
     | 
| 
       55 
     | 
    
         
            -
            Windows":http://rubyinstaller.org/ .
         
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
            h3. OS X
         
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
            There are Groonga packages for OS X environment.
         
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
            h4. MacPorts
         
     | 
| 
       62 
     | 
    
         
            -
             
     | 
| 
       63 
     | 
    
         
            -
            If you're using "MacPorts":http://www.macports.org/ , type the
         
     | 
| 
       64 
     | 
    
         
            -
            following commands on your terminal:
         
     | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
            <pre>
         
     | 
| 
       67 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       68 
     | 
    
         
            -
            % sudo port install groonga
         
     | 
| 
       69 
     | 
    
         
            -
            % sudo gem install rroonga
         
     | 
| 
       70 
     | 
    
         
            -
            </pre>
         
     | 
| 
       71 
     | 
    
         
            -
             
     | 
| 
       72 
     | 
    
         
            -
            h4. Homebrew
         
     | 
| 
       73 
     | 
    
         
            -
             
     | 
| 
       74 
     | 
    
         
            -
            If you're using "Homebrew":http://brew.sh/ , type the
         
     | 
| 
       75 
     | 
    
         
            -
            following commands on your terminal:
         
     | 
| 
       76 
     | 
    
         
            -
             
     | 
| 
       77 
     | 
    
         
            -
            <pre>
         
     | 
| 
       78 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       79 
     | 
    
         
            -
            % brew install groonga
         
     | 
| 
       80 
     | 
    
         
            -
            % gem install rroonga
         
     | 
| 
       81 
     | 
    
         
            -
            </pre>
         
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
            h3. Debian GNU/Linux
         
     | 
| 
       84 
     | 
    
         
            -
             
     | 
| 
       85 
     | 
    
         
            -
            You can install the Groonga package by apt. See "Groonga
         
     | 
| 
       86 
     | 
    
         
            -
            documentation":http://groonga.org/docs/install/debian.html how to set
         
     | 
| 
       87 
     | 
    
         
            -
            apt-line up.
         
     | 
| 
       88 
     | 
    
         
            -
             
     | 
| 
       89 
     | 
    
         
            -
            Type the following commands on your terminal after you finish to set
         
     | 
| 
       90 
     | 
    
         
            -
            apt-line up.
         
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
            <pre>
         
     | 
| 
       93 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       94 
     | 
    
         
            -
            % sudo apt-get install -y libgroonga-dev
         
     | 
| 
       95 
     | 
    
         
            -
            % sudo gem install rroonga
         
     | 
| 
       96 
     | 
    
         
            -
            </pre>
         
     | 
| 
       97 
     | 
    
         
            -
             
     | 
| 
       98 
     | 
    
         
            -
            h3. Ubuntu
         
     | 
| 
       99 
     | 
    
         
            -
             
     | 
| 
       100 
     | 
    
         
            -
            You can install the Groonga package by apt. See "Groonga
         
     | 
| 
       101 
     | 
    
         
            -
            documentation":http://groonga.org/docs/install/ubuntu.html how to set
         
     | 
| 
       102 
     | 
    
         
            -
            apt-line up.
         
     | 
| 
       103 
     | 
    
         
            -
             
     | 
| 
       104 
     | 
    
         
            -
            Type the following commands on your terminal after you finish to set
         
     | 
| 
       105 
     | 
    
         
            -
            apt-line up.
         
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
            <pre>
         
     | 
| 
       108 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       109 
     | 
    
         
            -
            % sudo apt-get install -y libgroonga-dev
         
     | 
| 
       110 
     | 
    
         
            -
            % sudo gem install rroonga
         
     | 
| 
       111 
     | 
    
         
            -
            </pre>
         
     | 
| 
       112 
     | 
    
         
            -
             
     | 
| 
       113 
     | 
    
         
            -
            h3. CentOS
         
     | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
            You can install the Groonga package by yum. See "Groonga
         
     | 
| 
       116 
     | 
    
         
            -
            documentation":http://groonga.org/docs/install/centos.html how to set
         
     | 
| 
       117 
     | 
    
         
            -
            yum repository up.
         
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
            But you need to install Ruby 1.9.3 or later by yourself. Both CentOS 5
         
     | 
| 
       120 
     | 
    
         
            -
            and 6 ship Ruby 1.8. Rroonga doesn't support Ruby 1.8.
         
     | 
| 
       121 
     | 
    
         
            -
             
     | 
| 
       122 
     | 
    
         
            -
            Type the following commands on your terminal after you finish to set
         
     | 
| 
       123 
     | 
    
         
            -
            yum repository up and installing Ruby 1.9.3 or later.
         
     | 
| 
       124 
     | 
    
         
            -
             
     | 
| 
       125 
     | 
    
         
            -
            <pre>
         
     | 
| 
       126 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       127 
     | 
    
         
            -
            % sudo yum install groonga-devel -y
         
     | 
| 
       128 
     | 
    
         
            -
            % gem install rroonga
         
     | 
| 
       129 
     | 
    
         
            -
            </pre>
         
     | 
| 
       130 
     | 
    
         
            -
             
     | 
| 
       131 
     | 
    
         
            -
            h3. Fedora
         
     | 
| 
       132 
     | 
    
         
            -
             
     | 
| 
       133 
     | 
    
         
            -
            You can install the Groonga package by yum. The Groonga package is
         
     | 
| 
       134 
     | 
    
         
            -
            included in the official Fedora repository.
         
     | 
| 
       135 
     | 
    
         
            -
             
     | 
| 
       136 
     | 
    
         
            -
            <pre>
         
     | 
| 
       137 
     | 
    
         
            -
            !!!command_line
         
     | 
| 
       138 
     | 
    
         
            -
            % sudo yum install groonga-devel -y
         
     | 
| 
       139 
     | 
    
         
            -
            % sudo gem install rroonga
         
     | 
| 
       140 
     | 
    
         
            -
            </pre>
         
     | 
| 
       141 
     | 
    
         
            -
             
     | 
| 
       142 
     | 
    
         
            -
            h2. Links
         
     | 
| 
       143 
     | 
    
         
            -
             
     | 
| 
       144 
     | 
    
         
            -
            * "2. Install - Groonga documentation":http://groonga.org/docs/install.html
         
     | 
| 
       145 
     | 
    
         
            -
             
     |