fluent-plugin-udp_forward 1.0.2 → 2.0.0

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
  SHA256:
3
- metadata.gz: 8df02cefd91afad6a43cce9ac11ef1036439535e0eff69f45e16392c123cc096
4
- data.tar.gz: e0322f4ebf144e1145c46a855c3ad06b37b7b668e52843d0fe5970d121dad99e
3
+ metadata.gz: f0da843cd919063f92e5fc48fb942b20c69889fc93cfb106c18e9cb8b9d470b5
4
+ data.tar.gz: 46c263a8af34db6d8a66ee90554b2072a50a960417c6c3489865e8959aefeaf3
5
5
  SHA512:
6
- metadata.gz: e85a029e6b19f62b00aa31ec8fa1b665adce42a6161ac0208e519616ba7806048014a107ee22bbc76134bd43c07131ee9a69e69bd5fd7097bd29272b2fd93274
7
- data.tar.gz: a3b400a11ca880707976dc700e135fc434c2c425411359c139887c05cf14fce90ff9b37f732ea54b87da2cd50e5382b90b030d06d5b37b6ebd0987a995fcca6a
6
+ metadata.gz: e096793c984f8c08351c5f2d87b256a68513e151e58e52feb73eab12001ed6d2c0f586462e0ff8e6433882b9d2958404820d96958858f345678b4a53de24e357
7
+ data.tar.gz: ad9d0180cbd78b0390c33c46218fb2be09fe14b148bf4fe34e2978f26727b9051b86333b5a051c36a63a894f011b4f2e23b9150f772449929dba04bb32b38130
@@ -1,18 +1,18 @@
1
- # encoding: utf-8
2
- Gem::Specification.new do |gem|
3
- gem.name = "fluent-plugin-udp_forward"
4
- gem.description = "This input plugin allows you to collect incoming events over UDP"
5
- gem.homepage = "https://github.com/tombolaltd/fluent-plugin-udp_forward"
6
- gem.summary = gem.description
7
- gem.version = "1.0.2"
8
- gem.license = 'MIT'
9
- gem.authors = ["Sohaib Maroof"]
10
- gem.email = "sohaib.maroof@tombola.com"
11
- gem.has_rdoc = false
12
- gem.files = `git ls-files`.split("\n")
13
- gem.require_paths = ['lib']
14
- gem.add_runtime_dependency "fluentd", [">= 0.14.0", "< 2"]
15
- gem.required_ruby_version = '>= 2.1'
16
- end
17
-
18
-
1
+ # encoding: utf-8
2
+ Gem::Specification.new do |gem|
3
+ gem.name = "fluent-plugin-udp_forward"
4
+ gem.description = "This input plugin allows you to collect incoming events over UDP"
5
+ gem.homepage = "https://github.com/tombolaltd/fluent-plugin-udp_forward"
6
+ gem.summary = gem.description
7
+ gem.version = "2.0.0"
8
+ gem.license = 'MIT'
9
+ gem.authors = ["Sohaib Maroof"]
10
+ gem.email = "sohaib.maroof@tombola.com"
11
+ gem.has_rdoc = false
12
+ gem.files = `git ls-files`.split("\n")
13
+ gem.require_paths = ['lib']
14
+ gem.add_runtime_dependency "fluentd", [">= 0.14.0", "< 2"]
15
+ gem.required_ruby_version = '>= 2.1'
16
+ end
17
+
18
+
@@ -1,5 +1,5 @@
1
- require 'fluent/input'
2
- module Fluent
1
+ require 'fluent/plugin/input'
2
+ module Fluent::Plugin
3
3
  class UDPForwardInput < Input
4
4
 
5
5
  Fluent::Plugin.register_input('udp_forward', self)
@@ -14,6 +14,10 @@ module Fluent
14
14
  super
15
15
  end
16
16
 
17
+ def multi_workers_ready?
18
+ true
19
+ end
20
+
17
21
  def start
18
22
  super
19
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-udp_forward
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sohaib Maroof
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-19 00:00:00.000000000 Z
11
+ date: 2019-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd