fluent-plugin-resolv 0.0.1 → 0.0.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c504aa36c9a6d610c50b94f0007f9642a7adbcd8
|
|
4
|
+
data.tar.gz: f007be3a26efd5fc940b4f9d294fbf0c2a46cc5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 798e4d1d1ffd5fd118848e3e4f941deb9c68782a4fe79c1d9e1252512885c0c2ede42b9e78f650516743a30532c8ab0d82ab49444d7c53d6a1bfb21a00a87356
|
|
7
|
+
data.tar.gz: c1ffeb968b389d6295787a82df33b9812a48339b118b7c31e921a56038998b000edc0cc44190fcf3eb33c266d39a68c12bec225aa638c858ee02d66a8456b47d
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'fluent/plugin/resolv/version'
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |spec|
|
|
7
6
|
spec.name = "fluent-plugin-resolv"
|
|
8
|
-
spec.version =
|
|
7
|
+
spec.version = "0.0.2"
|
|
9
8
|
spec.authors = ["Kohei MATSUSHITA"]
|
|
10
|
-
spec.email = ["ma2shita
|
|
9
|
+
spec.email = ["ma2shita@ma2shita.jp"]
|
|
11
10
|
spec.description = %q{Fluent plugin, IP address resolv and rewrite.}
|
|
12
11
|
spec.summary = %q{Fluent plugin, IP address resolv and rewrite.}
|
|
13
|
-
spec.homepage =
|
|
12
|
+
spec.homepage = "https://github.com/ma2shita/fluent-plugin-resolv"
|
|
14
13
|
spec.license = "MIT"
|
|
15
14
|
|
|
16
15
|
spec.files = `git ls-files`.split($/)
|
|
@@ -4,7 +4,7 @@ require 'resolv'
|
|
|
4
4
|
class Fluent::ResolvOutput < Fluent::Output
|
|
5
5
|
Fluent::Plugin.register_output('resolv', self)
|
|
6
6
|
|
|
7
|
-
config_param :key_name,
|
|
7
|
+
config_param :key_name, :string, :default => 'host'
|
|
8
8
|
config_param :remove_prefix, :string, :default => nil
|
|
9
9
|
config_param :add_prefix, :string, :default => nil
|
|
10
10
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-resolv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kohei MATSUSHITA
|
|
@@ -68,7 +68,7 @@ dependencies:
|
|
|
68
68
|
version: '0'
|
|
69
69
|
description: Fluent plugin, IP address resolv and rewrite.
|
|
70
70
|
email:
|
|
71
|
-
- ma2shita
|
|
71
|
+
- ma2shita@ma2shita.jp
|
|
72
72
|
executables: []
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
@@ -79,8 +79,7 @@ files:
|
|
|
79
79
|
- README.md
|
|
80
80
|
- Rakefile
|
|
81
81
|
- fluent-plugin-resolv.gemspec
|
|
82
|
-
- lib/fluent/plugin/
|
|
83
|
-
- lib/fluent/plugin/resolv/version.rb
|
|
82
|
+
- lib/fluent/plugin/out_resolv.rb
|
|
84
83
|
- test/helper.rb
|
|
85
84
|
- test/plugin/test_resolv.rb
|
|
86
85
|
homepage: https://github.com/ma2shita/fluent-plugin-resolv
|