fluent-plugin-groonga 1.1.6 → 1.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +7 -0
- data/fluent-plugin-groonga.gemspec +1 -1
- data/lib/fluent/plugin/in_groonga.rb +2 -4
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bebd98779b93ff88f2c2411c411c0caf9b98cf8
|
4
|
+
data.tar.gz: 36072342f0b721a770888da4b1aa303741ad6a20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 944e0061c0a7d200d1e64babcb2363e36eeb319ab36f908a19df15ef3d6a485d15af7208fcb1b609d6bcf7778b399e29fbc84838675afa75a816d607ebb44d78
|
7
|
+
data.tar.gz: 263111e96f80aa571cf8e765a54a35d7095eee541d32f248fe0a7aed7c50e7f2737523a3c77fe8af71faf7f51494ea265f81abde511c5de9158d8510bfc71ded
|
data/doc/text/news.md
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
Gem::Specification.new do |spec|
|
19
19
|
spec.name = "fluent-plugin-groonga"
|
20
|
-
spec.version = "1.1.
|
20
|
+
spec.version = "1.1.7"
|
21
21
|
spec.authors = ["Kouhei Sutou"]
|
22
22
|
spec.email = ["kou@clear-code.com"]
|
23
23
|
spec.summary = "Fluentd plugin to store data into Groonga and implement Groonga replication system."
|
@@ -1,6 +1,4 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
# Copyright (C) 2012-2016 Kouhei Sutou <kou@clear-code.com>
|
1
|
+
# Copyright (C) 2012-2017 Kouhei Sutou <kou@clear-code.com>
|
4
2
|
#
|
5
3
|
# This library is free software; you can redistribute it and/or
|
6
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -35,7 +33,7 @@ module Fluent
|
|
35
33
|
super
|
36
34
|
end
|
37
35
|
|
38
|
-
config_param :protocol, :
|
36
|
+
config_param :protocol, :default => :http do |value|
|
39
37
|
case value
|
40
38
|
when "http", "gqtp"
|
41
39
|
value.to_sym
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-groonga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fluentd
|
@@ -186,16 +186,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
186
|
version: '0'
|
187
187
|
requirements: []
|
188
188
|
rubyforge_project:
|
189
|
-
rubygems_version: 2.
|
189
|
+
rubygems_version: 2.6.11
|
190
190
|
signing_key:
|
191
191
|
specification_version: 4
|
192
192
|
summary: Fluentd plugin to store data into Groonga and implement Groonga replication
|
193
193
|
system.
|
194
194
|
test_files:
|
195
|
-
- test/
|
196
|
-
- test/output/test_table_definition.rb
|
195
|
+
- test/test_output.rb
|
197
196
|
- test/output/test_table_index_definition.rb
|
198
197
|
- test/output/test_type_guesser.rb
|
198
|
+
- test/output/test_table_definition.rb
|
199
199
|
- test/run-test.rb
|
200
|
-
- test/
|
201
|
-
has_rdoc:
|
200
|
+
- test/test_input.rb
|