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: cc04bd98417b70f6fe881be2c83181bb8b012d86
4
- data.tar.gz: cee9bcac4fc03d824bbba4e84edfccb83b1b1229
3
+ metadata.gz: c504aa36c9a6d610c50b94f0007f9642a7adbcd8
4
+ data.tar.gz: f007be3a26efd5fc940b4f9d294fbf0c2a46cc5f
5
5
  SHA512:
6
- metadata.gz: 7896a4d4d4e3c0d4d849ccaf733cfedfdc9ce824c344afde6a33ed005109a0aeaca2abcad3103fcf4ac05540327f0d2e393b82e00ce0fc046c7801d514dd80d2
7
- data.tar.gz: aadc675cf38a7b268459f983d2a341a05c61adbbd6b5e17530de81cc8644e8aa02daa6a0cbe0ca72d620a30027401d1b58a7133f4da4e0d30fc695089691a19d
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 = Fluent::Plugin::Resolv::VERSION
7
+ spec.version = "0.0.2"
9
8
  spec.authors = ["Kohei MATSUSHITA"]
10
- spec.email = ["ma2shita+git@ma2shita.jp"]
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 = %q{https://github.com/ma2shita/fluent-plugin-resolv}
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, :string, :default => 'host'
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.1
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+git@ma2shita.jp
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/resolv.rb
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
@@ -1,7 +0,0 @@
1
- module Fluent
2
- module Plugin
3
- module Resolv
4
- VERSION = "0.0.1"
5
- end
6
- end
7
- end