fluent-plugin-reemit 0.2.0 → 0.2.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: abcbfb610626eb4038ac21e8def1cce86b64af7e
4
- data.tar.gz: 021b16439391856c15503b60b9623732f912c2c5
3
+ metadata.gz: 0404160cd5a1c4c5b048ff0dccc853242ed44299
4
+ data.tar.gz: 1d832c567318c7d268fcc2e7e764a439f1b422fd
5
5
  SHA512:
6
- metadata.gz: ebbb3ea9c22854ef7ef31ef10ee921d33c1ac0c77f188c82288273ddd6ff989db0bf661820ed4e5f62c2c0863d33e335cbb89308866c9e77265cde960472c3bd
7
- data.tar.gz: fc8e173c685930842fa52ae966457dbf245a61dc9214e6dff0ae95924c10573f45626fc3e0f2efa468db9535f4944b435cf647cef3d608ed3e210b537ba66854
6
+ metadata.gz: 182e124f72351c76ef85a86f2ed51a7f50247504f174617120f89eb62a7eba391a457c67f70773b3b0b2cb5c2b6fcb83fccffa56608be371f9813adedd4f809b
7
+ data.tar.gz: e5c17f6c93b8e74a0c3cfc48cf6c9b9246cd52a04628e9f31fbecbe5e1da8b995af85c46a7bb929364db3edb481a17650f01577107dab983e619d7fd9d611dbf
@@ -1,3 +1,9 @@
1
+ ## 0.2.1 (2015/08/11)
2
+
3
+ Fixes:
4
+
5
+ * Fix uninitialized constant Fluent::ReemitOutput::V12EventRouter::Pipeline (thanks to tarokkk)
6
+
1
7
  ## 0.2.0 (2015/08/06)
2
8
 
3
9
  Enhancements:
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = "fluent-plugin-reemit"
6
- gem.version = "0.2.0"
6
+ gem.version = "0.2.1"
7
7
  gem.authors = ["Naotoshi Seo"]
8
8
  gem.email = "sonots@gmail.com"
9
9
  gem.homepage = "https://github.com/sonots/fluent-plugin-reemit"
@@ -1,3 +1,5 @@
1
+ require 'fluent/event_router'
2
+
1
3
  module Fluent
2
4
  class ReemitOutput < Output
3
5
  Fluent::Plugin.register_output('reemit', self)
@@ -80,7 +82,7 @@ module Fluent
80
82
  if rule.match?(tag)
81
83
  if found_reemit && !@reemit.included?(rule.collector)
82
84
  if rule.collector.is_a?(Filter)
83
- pipeline ||= Pipeline.new
85
+ pipeline ||= EventRouter::Pipeline.new
84
86
  pipeline.add_filter(rule.collector)
85
87
  else
86
88
  if pipeline
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-reemit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-06 00:00:00.000000000 Z
11
+ date: 2015-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd