fluent-plugin-groonga 1.1.6 → 1.1.7

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: dc768884f9ce10fdc73cc18f8d2cddae575b75a9
4
- data.tar.gz: ee2ed4d2717c46d0aa5b52425591598e20971f80
3
+ metadata.gz: 5bebd98779b93ff88f2c2411c411c0caf9b98cf8
4
+ data.tar.gz: 36072342f0b721a770888da4b1aa303741ad6a20
5
5
  SHA512:
6
- metadata.gz: b4dbd683a4cbe10a7477bbe08ce8e2a15aa3bd090fff6cc4f9e4810f04e0a46b212e96cacfb176fb9dcf5cf8efc952ca06862d0d9d6b1fe78107ee9bdcc94250
7
- data.tar.gz: ae2d76e50c1c8cdfce5133bfa9c6bd708bd1725d4ce73c90f16e8b6a39452b68d59f462009f9dfa4368288ebb3c94523f201d10c6a07b796ebabba0a6130d459
6
+ metadata.gz: 944e0061c0a7d200d1e64babcb2363e36eeb319ab36f908a19df15ef3d6a485d15af7208fcb1b609d6bcf7778b399e29fbc84838675afa75a816d607ebb44d78
7
+ data.tar.gz: 263111e96f80aa571cf8e765a54a35d7095eee541d32f248fe0a7aed7c50e7f2737523a3c77fe8af71faf7f51494ea265f81abde511c5de9158d8510bfc71ded
@@ -2,6 +2,13 @@
2
2
 
3
3
  # News
4
4
 
5
+ ## 1.1.7: 2017-04-04
6
+
7
+ ### Fixes
8
+
9
+ * in: Fixed a typo about configuration parameter.
10
+ It causes unexpected error because of unknown option.
11
+
5
12
  ## 1.1.6: 2016-10-03
6
13
 
7
14
  ### Improvements
@@ -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.6"
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
- # -*- coding: utf-8 -*-
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, :defalut => :http do |value|
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.6
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: 2016-10-03 00:00:00.000000000 Z
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.2.5
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/test_input.rb
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/test_output.rb
201
- has_rdoc:
200
+ - test/test_input.rb