groonga-client-cli 1.0.0 → 1.0.1
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 +7 -0
- data/groonga-client-cli.gemspec +1 -1
- data/lib/groonga-client-cli/groonga-client.rb +1 -2
- data/lib/groonga-client-cli/version.rb +1 -1
- metadata +3 -4
- data/lib/groonga-client-cli/default.rb +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f6b53e1dfe99a482a13537a085c3401281f453b
|
4
|
+
data.tar.gz: 0c86154bfd649729b9626dbf79d39ecd397b36dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d2867d94b9fe7c5574bc9267cc6be955c50e9bf8d5f7862902078663eeb4964a0ae08095c647a4c52f81a2aa5718f6c94dbff54f28f730f0c7b6356ef835ba
|
7
|
+
data.tar.gz: 1198a6e963cc5ae90e12abd663bacdae46ef80c45913d4195b14919bfc18625f833ab704eb1ed73f498cb8c692ced5c011be3d96e6938d33e3ee3b80104c7cfe
|
data/doc/text/news.md
CHANGED
data/groonga-client-cli.gemspec
CHANGED
@@ -56,7 +56,7 @@ Gem::Specification.new do |spec|
|
|
56
56
|
spec.executables = Dir.glob("*")
|
57
57
|
end
|
58
58
|
|
59
|
-
spec.add_runtime_dependency("groonga-client")
|
59
|
+
spec.add_runtime_dependency("groonga-client", ">= 0.1.6")
|
60
60
|
spec.add_runtime_dependency("groonga-command-parser")
|
61
61
|
|
62
62
|
spec.add_development_dependency("bundler")
|
@@ -23,7 +23,6 @@ require "groonga/command/parser"
|
|
23
23
|
require "groonga/client"
|
24
24
|
|
25
25
|
require "groonga-client-cli/version"
|
26
|
-
require "groonga-client-cli/default"
|
27
26
|
|
28
27
|
module GroongaClientCLI
|
29
28
|
class GroongaClient
|
@@ -32,7 +31,7 @@ module GroongaClientCLI
|
|
32
31
|
@host = "localhost"
|
33
32
|
@port = nil
|
34
33
|
|
35
|
-
@read_timeout = Default::READ_TIMEOUT
|
34
|
+
@read_timeout = Groonga::Client::Default::READ_TIMEOUT
|
36
35
|
|
37
36
|
@runner_options = {
|
38
37
|
:split_load_chunk_size => 10000,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groonga-client-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.1.6
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 0.1.6
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: groonga-command-parser
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -111,7 +111,6 @@ files:
|
|
111
111
|
- doc/text/lgpl-2.1.txt
|
112
112
|
- doc/text/news.md
|
113
113
|
- groonga-client-cli.gemspec
|
114
|
-
- lib/groonga-client-cli/default.rb
|
115
114
|
- lib/groonga-client-cli/groonga-client.rb
|
116
115
|
- lib/groonga-client-cli/version.rb
|
117
116
|
homepage: https://github.com/ranguba/groonga-client-cli
|
@@ -1,23 +0,0 @@
|
|
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 GroongaClientCLI
|
18
|
-
module Default
|
19
|
-
# The default timeout on reading response from Groonga server in
|
20
|
-
# seconds.
|
21
|
-
READ_TIMEOUT = 60
|
22
|
-
end
|
23
|
-
end
|