groonga-client 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +6 -0
- data/lib/groonga/client.rb +1 -0
- data/lib/groonga/client/default.rb +25 -0
- data/lib/groonga/client/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 085dda6ce4c3f7375c8960739d2afc0ea48c022f
|
4
|
+
data.tar.gz: d276c04e190b17811dc17eeb463642bbcef6dae4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bdec00ae8c07fe0ff8194277358176170d96b409cb9b32e73777be5cb3fa305b17a6c9067d56f0c952837b2d4f7807aa9260710b8834f39ee7c5ca9fb7789dd
|
7
|
+
data.tar.gz: dde1e186a36cb02738cf9321130a3ec369116f14848db580df3cffff0a008bca80f2df98529ee08c082eeebc006f7244da06280ae56717fd80ad8f442fecded8
|
data/doc/text/news.md
CHANGED
data/lib/groonga/client.rb
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
# License along with this library; if not, write to the Free Software
|
18
18
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
19
19
|
|
20
|
+
require "groonga/client/default"
|
20
21
|
require "groonga/client/command"
|
21
22
|
require "groonga/client/empty-request"
|
22
23
|
require "groonga/client/protocol/gqtp"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# Copyright (C) 2015 Kouhei Sutou <kou@clear-code.com>
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
module Groonga
|
18
|
+
class Client
|
19
|
+
module Default
|
20
|
+
# The default timeout on reading response from Groonga server in
|
21
|
+
# seconds.
|
22
|
+
READ_TIMEOUT = 60
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groonga-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Haruka Yoshihara
|
@@ -160,6 +160,7 @@ files:
|
|
160
160
|
- groonga-client.gemspec
|
161
161
|
- lib/groonga/client.rb
|
162
162
|
- lib/groonga/client/command.rb
|
163
|
+
- lib/groonga/client/default.rb
|
163
164
|
- lib/groonga/client/empty-request.rb
|
164
165
|
- lib/groonga/client/error.rb
|
165
166
|
- lib/groonga/client/protocol/error.rb
|