groonga-client 0.6.3 → 0.6.4
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/doc/text/news.md +6 -0
- data/groonga-client.gemspec +2 -1
- data/lib/groonga/client/version.rb +2 -2
- data/test/request/test-select.rb +2 -2
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 78a494db54af1981f348843b06df72cfb4d2c09d1dda5095aa75d8b5b05a8cc9
|
|
4
|
+
data.tar.gz: 1551dc509c115d96a94d70816234b42baef30c7c19bcd74a01e62b595a0633ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 227087c01d247af0e6e4255fcafda882babc27aef9da37425ef1759b18dc4ec7839bf0d643ee2ac31844ab17f8d67a3643a516b296f04e8f78ca4fa347e00ae1
|
|
7
|
+
data.tar.gz: 3bd74b528c567aeb7679d59898232a35a622dc5a999df43cdbc6041721a29a4f625de74df70adf5fa0228bb459cd738c4d04a0b946d9bd2eff974b3807875cb4
|
data/doc/text/news.md
CHANGED
data/groonga-client.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- mode: ruby -*-
|
|
2
2
|
#
|
|
3
3
|
# Copyright (C) 2013 Haruka Yoshihara <yoshihara@clear-code.com>
|
|
4
|
-
# Copyright (C) 2014-
|
|
4
|
+
# Copyright (C) 2014-2021 Sutou Kouhei <kou@clear-code.com>
|
|
5
5
|
#
|
|
6
6
|
# This library is free software; you can redistribute it and/or
|
|
7
7
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -51,6 +51,7 @@ Gem::Specification.new do |spec|
|
|
|
51
51
|
spec.add_runtime_dependency("groonga-command", ">= 1.4.7")
|
|
52
52
|
spec.add_runtime_dependency("groonga-command-parser", ">= 1.1.0")
|
|
53
53
|
spec.add_runtime_dependency("hashie")
|
|
54
|
+
spec.add_runtime_dependency("rexml")
|
|
54
55
|
|
|
55
56
|
spec.add_development_dependency("bundler")
|
|
56
57
|
spec.add_development_dependency("rake")
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2013-
|
|
1
|
+
# Copyright (C) 2013-2020 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# This library is free software; you can redistribute it and/or
|
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
|
|
17
17
|
module Groonga
|
|
18
18
|
class Client
|
|
19
|
-
VERSION = "0.6.
|
|
19
|
+
VERSION = "0.6.4"
|
|
20
20
|
end
|
|
21
21
|
end
|
data/test/request/test-select.rb
CHANGED
|
@@ -186,8 +186,8 @@ class TestRequestSelect < Test::Unit::TestCase
|
|
|
186
186
|
end
|
|
187
187
|
|
|
188
188
|
sub_test_case("#paginate") do
|
|
189
|
-
def paginate(*args)
|
|
190
|
-
@request.paginate(*args).to_parameters
|
|
189
|
+
def paginate(*args, **kwargs)
|
|
190
|
+
@request.paginate(*args, **kwargs).to_parameters
|
|
191
191
|
end
|
|
192
192
|
|
|
193
193
|
sub_test_case("page") do
|
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.6.
|
|
4
|
+
version: 0.6.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:
|
|
13
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: gqtp
|
|
@@ -68,6 +68,20 @@ dependencies:
|
|
|
68
68
|
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
|
+
- !ruby/object:Gem::Dependency
|
|
72
|
+
name: rexml
|
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '0'
|
|
78
|
+
type: :runtime
|
|
79
|
+
prerelease: false
|
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '0'
|
|
71
85
|
- !ruby/object:Gem::Dependency
|
|
72
86
|
name: bundler
|
|
73
87
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -286,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
286
300
|
- !ruby/object:Gem::Version
|
|
287
301
|
version: '0'
|
|
288
302
|
requirements: []
|
|
289
|
-
rubygems_version: 3.
|
|
303
|
+
rubygems_version: 3.3.0.dev
|
|
290
304
|
signing_key:
|
|
291
305
|
specification_version: 4
|
|
292
306
|
summary: Groonga-client is a client for Groonga (http://groonga.org/) implemented
|