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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 438988f960fa1d4c789f181ebd22a9b19720b5d4
4
- data.tar.gz: 77a783dc54added90cbdc4fd1aa89eebd6880ba4
3
+ metadata.gz: 1f6b53e1dfe99a482a13537a085c3401281f453b
4
+ data.tar.gz: 0c86154bfd649729b9626dbf79d39ecd397b36dc
5
5
  SHA512:
6
- metadata.gz: 88ddfd2c7bfb4ab39e3f551823e6e13b0fde5eb394ca784c8e53299f59c3b82889a4de9ea4a254f7988b0be3ca44af29eb13b093aa95f11d5c92e518735491d9
7
- data.tar.gz: 53c84ff99ec7c35b673adc41aee1e8a97bf62cb0b5fb4c8d8ee893d56f974117cb205159c8083683778a4fa436c031197b3a3a3367d04e8fcf92d2fdc91d9622
6
+ metadata.gz: 55d2867d94b9fe7c5574bc9267cc6be955c50e9bf8d5f7862902078663eeb4964a0ae08095c647a4c52f81a2aa5718f6c94dbff54f28f730f0c7b6356ef835ba
7
+ data.tar.gz: 1198a6e963cc5ae90e12abd663bacdae46ef80c45913d4195b14919bfc18625f833ab704eb1ed73f498cb8c692ced5c011be3d96e6938d33e3ee3b80104c7cfe
data/doc/text/news.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # NEWS
2
2
 
3
+ ## 1.0.1 - 2015-06-10
4
+
5
+ ### Improvements
6
+
7
+ * Changed to use the same default value in groonga-client.
8
+ * Required groonga-client 0.1.6 or later.
9
+
3
10
  ## 1.0.0 - 2015-06-10
4
11
 
5
12
  Initial release!!!
@@ -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,
@@ -15,5 +15,5 @@
15
15
  # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
  module GroongaClientCLI
18
- VERSION = "1.0.0"
18
+ VERSION = "1.0.1"
19
19
  end
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.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: '0'
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: '0'
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