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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 90d37e053ef3230f024ce5c1f6f8eb1152c86119
4
- data.tar.gz: ac7cded2fe20334aad01a9fa67f6654114904461
3
+ metadata.gz: 085dda6ce4c3f7375c8960739d2afc0ea48c022f
4
+ data.tar.gz: d276c04e190b17811dc17eeb463642bbcef6dae4
5
5
  SHA512:
6
- metadata.gz: a7446bad692e5e9d30be61d52dfca74e4817d7c9b386bb4d1288154594fd90bbaba90ebc3941c88256721e0abb1704a7b05dc7483f9a780863a1437a08114cc9
7
- data.tar.gz: ea6a69f71ff76d03fc4b0bc0607dc68de2948087157842a285cf36b7beb14ecaf224171c5fa03151b5b4d2689836e637553cea1b09aa589b14476caa72376878
6
+ metadata.gz: 2bdec00ae8c07fe0ff8194277358176170d96b409cb9b32e73777be5cb3fa305b17a6c9067d56f0c952837b2d4f7807aa9260710b8834f39ee7c5ca9fb7789dd
7
+ data.tar.gz: dde1e186a36cb02738cf9321130a3ec369116f14848db580df3cffff0a008bca80f2df98529ee08c082eeebc006f7244da06280ae56717fd80ad8f442fecded8
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # NEWS
2
2
 
3
+ ## 0.1.6 - 2015-06-10
4
+
5
+ ### Fixes
6
+
7
+ * Re-added required file.
8
+
3
9
  ## 0.1.5 - 2015-06-10
4
10
 
5
11
  ### Fixes
@@ -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
@@ -18,6 +18,6 @@
18
18
 
19
19
  module Groonga
20
20
  class Client
21
- VERSION = "0.1.5"
21
+ VERSION = "0.1.6"
22
22
  end
23
23
  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.5
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