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 +4 -4
- data/Rakefile +4 -2
- data/doc/text/news.md +8 -0
- data/lib/groonga/query-log/server-verifier.rb +1 -0
- data/lib/groonga/query-log/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ddc27e0fcae0618400de2f9d3283dfe2b2cb11c6
|
|
4
|
+
data.tar.gz: b2a3ed1b2a07396d10d2b810f6c621edbe71a8ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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)
|
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.
|
|
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-
|
|
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
|