groonga-query-log 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59cb88a84b56af904292b29bd1a4cb9c28325c61
4
- data.tar.gz: 92f954ad66d8b38eb2bd36172d083acfa4aea45f
3
+ metadata.gz: ddc27e0fcae0618400de2f9d3283dfe2b2cb11c6
4
+ data.tar.gz: b2a3ed1b2a07396d10d2b810f6c621edbe71a8ad
5
5
  SHA512:
6
- metadata.gz: db4ed883687a08851ba4d140dd5974240a0dc5085bb215145ef82f79908edc7be16c8188fe1998e3096d5f1fa0e9ca08569cb416d22cf5290ff8681126d88dda
7
- data.tar.gz: 9e78b432f2eec919f7e35d6d7fdb81c55b44b86de1949cf3f2a05236c3be9211bd39f79cc1273d8a052c258f1cc9305bcb61cde46f1e2a6752937ce68dbcbfd2
6
+ metadata.gz: 81cad11fafb5f09332077f8c9b50da20d1d8e674d96e1675f872a17539d0696b177db31f02990f70fd798d5d7caf943950dbcb30822d482d6a0922f4a0a840a7
7
+ data.tar.gz: 9fa93309d8bf11f63a0214d464fe632eabde8ce72449a9d8dc0faef93064ba9d027bc84aaa99a23a6263535fb3cb64f917df80dccd25f924ea8095a0495e2531
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- mode: ruby; coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com>
3
+ # Copyright (C) 2012-2014 Kouhei Sutou <kou@clear-code.com>
4
4
  #
5
5
  # This library is free software; you can redistribute it and/or
6
6
  # modify it under the terms of the GNU Lesser General Public
@@ -37,7 +37,9 @@ Packnga::DocumentTask.new(spec) do |task|
37
37
  task.translate_languages = ["ja"]
38
38
  end
39
39
 
40
- Packnga::ReleaseTask.new(spec) do
40
+ groonga_org_dir = Dir.glob("{..,../../www}/groonga.org").first
41
+ Packnga::ReleaseTask.new(spec) do |task|
42
+ task.index_html_dir = groonga_org_dir
41
43
  end
42
44
 
43
45
  desc "Run tests"
data/doc/text/news.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # News
2
2
 
3
+ ## 1.1.1: 2014-11-06
4
+
5
+ ### Improvements
6
+
7
+ * groonga-query-log-run-regression-test: Forced to use JSON output
8
+ type because XML output type and TSV output type for select
9
+ command aren't supported yet.
10
+
3
11
  ## 1.1.0: 2014-10-31
4
12
 
5
13
  ### Improvements
@@ -105,6 +105,7 @@ module Groonga
105
105
 
106
106
  def verify_command(groonga1_client, groonga2_client, command)
107
107
  command["cache"] = "no" if @options.disable_cache?
108
+ command["output_type"] = :json
108
109
  response1 = groonga1_client.execute(command)
109
110
  response2 = groonga2_client.execute(command)
110
111
  comparer = ResponseComparer.new(command, response1, response2)
@@ -18,6 +18,6 @@
18
18
 
19
19
  module Groonga
20
20
  module QueryLog
21
- VERSION = "1.1.0"
21
+ VERSION = "1.1.1"
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-query-log
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-31 00:00:00.000000000 Z
11
+ date: 2014-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: groonga-command-parser