groonga-client 0.5.3 → 0.5.4

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: e5a1481041e35f70cc0bdfc67c42726260d4db93
4
- data.tar.gz: '029977cb46c61d06fdb07d8d8ce71498c0375f87'
3
+ metadata.gz: 31002e6c2a6cc64ea8249019c9118dcc785e5de9
4
+ data.tar.gz: '03379d77558768d720f2abf650fc5a2cca03e4d5'
5
5
  SHA512:
6
- metadata.gz: 5433daf65d59587e66d23850d27c3bec597e9fc81c501b65ff7ede45e21976d038f0241f757d1817d1b182f2c8d2aa5d4b74e9ff6ed91806c2c0ee7fe6ed9715
7
- data.tar.gz: 4e9d0c4d4573587bdc4f0e06979aa5d9ae33bc81b6814a2a909066adc9990377d7ffba132908950645e0d0340a1310dca11ae4da8709516d482154324b91e3c1
6
+ metadata.gz: ec7bef6d724d2601fa4b757522ba50439784d50b503ba670831b01cbd0068d0dd310cd30e3513902925d6558a340d6319f89e5576a72cba5722513de1c3fe5dc
7
+ data.tar.gz: c466483d16efc8e6b1f66256bfba88faac81c11877552c9060d501b2c6d1f9befd5d71c1982833e9ea02e22152169ba80fb6fc0efcd973616d9b06586eae616f
data/bin/groonga-client CHANGED
@@ -17,6 +17,12 @@
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 "net/http"
21
+
22
+ if Net::HTTP.const_defined?(:IDEMPOTENT_METHODS_)
23
+ Net::HTTP::IDEMPOTENT_METHODS_.clear
24
+ end
25
+
20
26
  require "groonga/client/command-line/groonga-client"
21
27
 
22
28
  command_line = Groonga::Client::CommandLine::GroongaClient.new
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # NEWS
2
2
 
3
+ ## 0.5.4 - 2017-10-27
4
+
5
+ ### Improvements
6
+
7
+ * `groonga-client`: Disabled auto retry on timeout.
8
+
3
9
  ## 0.5.3 - 2017-10-26
4
10
 
5
11
  ### Improvements
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  class Client
19
- VERSION = "0.5.3"
19
+ VERSION = "0.5.4"
20
20
  end
21
21
  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.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Haruka Yoshihara
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-10-26 00:00:00.000000000 Z
13
+ date: 2017-10-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: gqtp
@@ -161,8 +161,8 @@ email:
161
161
  - kou@clear-code.com
162
162
  - tfortress58@gmail.com
163
163
  executables:
164
- - groonga-client-index-recreate
165
164
  - groonga-client
165
+ - groonga-client-index-recreate
166
166
  extensions: []
167
167
  extra_rdoc_files: []
168
168
  files:
@@ -280,33 +280,33 @@ specification_version: 4
280
280
  summary: Groonga-client is a client for Groonga (http://groonga.org/) implemented
281
281
  with pure Ruby. You can use it without Groonga.
282
282
  test_files:
283
- - test/test-client.rb
284
- - test/command-line/test-index-recreate.rb
285
- - test/test-script-syntax.rb
286
- - test/request/select/test-backward-compatible-sort-keys-parameter.rb
287
- - test/request/select/test-filter.rb
288
- - test/request/select/test-sort-keys-parameter.rb
289
- - test/request/select/test-output-columns-parameter.rb
290
- - test/request/select/test-values-parameter.rb
291
- - test/request/select/test-scorer.rb
292
- - test/request/test-merger.rb
293
- - test/request/test-generic.rb
294
- - test/request/test-select.rb
295
- - test/test-command.rb
296
- - test/protocol/test-gqtp.rb
297
- - test/protocol/test-http.rb
298
- - test/run-test.rb
299
- - test/response/test-base.rb
300
- - test/response/test-load.rb
283
+ - test/results/test-table-list.rb
301
284
  - test/response/test-column-list.rb
302
- - test/response/helper.rb
303
- - test/response/test-error.rb
304
- - test/response/test-table-list.rb
285
+ - test/response/test-table-remove.rb
305
286
  - test/response/test-status.rb
306
- - test/response/test-select-xml.rb
307
287
  - test/response/test-schema.rb
288
+ - test/response/helper.rb
289
+ - test/response/test-select-xml.rb
290
+ - test/response/test-table-create.rb
308
291
  - test/response/test-select-command-version3.rb
292
+ - test/response/test-base.rb
293
+ - test/response/test-load.rb
309
294
  - test/response/test-select-command-version1.rb
310
- - test/response/test-table-create.rb
311
- - test/response/test-table-remove.rb
312
- - test/results/test-table-list.rb
295
+ - test/response/test-error.rb
296
+ - test/response/test-table-list.rb
297
+ - test/run-test.rb
298
+ - test/protocol/test-gqtp.rb
299
+ - test/protocol/test-http.rb
300
+ - test/test-script-syntax.rb
301
+ - test/request/test-generic.rb
302
+ - test/request/test-select.rb
303
+ - test/request/select/test-values-parameter.rb
304
+ - test/request/select/test-scorer.rb
305
+ - test/request/select/test-sort-keys-parameter.rb
306
+ - test/request/select/test-filter.rb
307
+ - test/request/select/test-backward-compatible-sort-keys-parameter.rb
308
+ - test/request/select/test-output-columns-parameter.rb
309
+ - test/request/test-merger.rb
310
+ - test/command-line/test-index-recreate.rb
311
+ - test/test-client.rb
312
+ - test/test-command.rb