fluent-plugin-add 0.0.2 → 0.0.3
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 +4 -4
- data/README.md +2 -1
- data/fluent-plugin-add.gemspec +4 -4
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e24142ee147848fe4a6dd43fee405cccd7d19af0
|
|
4
|
+
data.tar.gz: d4579ea7fdee5a14f187fe40ce09a387e93de438
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a23b8ad838be4e8c849598857f33b54ac9274ebbb3c4b2a36b36f83f86d9c10ff59eab55886f8f15049e4e8e708d903fa2634f77ee238c8073ceac54d0bfe2f
|
|
7
|
+
data.tar.gz: 0b458e3c58dfcfda2ba0e3a55a42d972c3a4738e9f7b7a07d6c3c3bb2a9ef62e5140485710f2dd49536813dcfb76f57c56ecd42f1a4a633bf752b42ee93762ca
|
data/README.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
add_tag_prefix debug
|
|
14
14
|
<pair>
|
|
15
15
|
hoge moge
|
|
16
|
+
hogehoge mogemoge
|
|
16
17
|
</pair>
|
|
17
18
|
</match>
|
|
18
19
|
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
### Assuming following inputs are coming:
|
|
21
22
|
test.aa: {"json":"dayo"}
|
|
22
23
|
### then output bocomes as belows
|
|
23
|
-
debug.test.aa: {"json":"dayo", "hoge":"moge"}
|
|
24
|
+
debug.test.aa: {"json":"dayo", "hoge":"moge","hogehoge":"mogemoge"}
|
|
24
25
|
|
|
25
26
|
|
|
26
27
|
## Contributing
|
data/fluent-plugin-add.gemspec
CHANGED
|
@@ -5,11 +5,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "fluent-plugin-add"
|
|
8
|
-
spec.version = "0.0.
|
|
8
|
+
spec.version = "0.0.3"
|
|
9
9
|
spec.authors = ["yu yamada"]
|
|
10
|
-
spec.email = ["yu.
|
|
11
|
-
spec.description = %q{Output filter plugin to
|
|
12
|
-
spec.summary = %q{Output filter plugin to
|
|
10
|
+
spec.email = ["yu.yamada07@gmail.com"]
|
|
11
|
+
spec.description = %q{Output filter plugin to add messages}
|
|
12
|
+
spec.summary = %q{Output filter plugin to add messages}
|
|
13
13
|
spec.homepage = "https://github.com/yu-yamada/fluent-plugin-add"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-add
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yu yamada
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-12-
|
|
11
|
+
date: 2013-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -38,9 +38,9 @@ dependencies:
|
|
|
38
38
|
- - '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description: Output filter plugin to
|
|
41
|
+
description: Output filter plugin to add messages
|
|
42
42
|
email:
|
|
43
|
-
- yu.
|
|
43
|
+
- yu.yamada07@gmail.com
|
|
44
44
|
executables: []
|
|
45
45
|
extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
|
@@ -77,7 +77,7 @@ rubyforge_project:
|
|
|
77
77
|
rubygems_version: 2.0.2
|
|
78
78
|
signing_key:
|
|
79
79
|
specification_version: 4
|
|
80
|
-
summary: Output filter plugin to
|
|
80
|
+
summary: Output filter plugin to add messages
|
|
81
81
|
test_files:
|
|
82
82
|
- test/helper.rb
|
|
83
83
|
- test/plugin/test_out_add.rb
|