fluent-plugin-xml-simple-filter 0.0.10 → 0.0.11

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: 861c45d100b52b0809aa3088252c99f2b3ca7bfb
4
- data.tar.gz: 08d0bfc1587b515c9588f8efd34b3a89946b35a8
3
+ metadata.gz: c91a8c69c01ee9a0a35f997cdf23ee6031b36652
4
+ data.tar.gz: 68a8cab0d8c13c8ffa79f4abfbf07ddc81959731
5
5
  SHA512:
6
- metadata.gz: d7547985669b192adaf9fba26bd886f8d88e69675230f9bb839a1c3f6fd068e4a9d769a1ce83f15dec0d2266204ffedcade2b04eeca1d8c9822bd14bf71dd448
7
- data.tar.gz: 9c1df4d1710bfb5d7e1df6f8c2678cf48fe64fa7aa917a6980378b11211f12c2443205a204203a730def171b389275182113c6b116b0f4f8c5295824871f773d
6
+ metadata.gz: af282b44e29ed725a6e7d6bb28779b1fbfb7be32fd6b42a74ed0ca536f629d55b194e4b2213e73cf3484e4d1657116926e0843baef578b1f032083d831b2c931
7
+ data.tar.gz: 7850ce9182cb3d8ace036481156a0a78289cf3cfc6884a45983496288965fe1037f5e8a402e4fbadea125557878699b44de609bfcfd937407f02c4874b0950c2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.10
1
+ 0.0.11
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: fluent-plugin-xml-simple-filter 0.0.10 ruby lib
5
+ # stub: fluent-plugin-xml-simple-filter 0.0.11 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "fluent-plugin-xml-simple-filter".freeze
9
- s.version = "0.0.10"
9
+ s.version = "0.0.11"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
@@ -42,8 +42,11 @@ module Fluent
42
42
  end
43
43
 
44
44
  hash = @parser.parse(record[field])
45
+ hash = self.try_convert_times ? convert_times(hash) : hash
45
46
 
46
- record[field_name] = self.try_convert_times ? convert_times(hash) : hash
47
+ $log.debug "Hash from XML: #{hash.to_json}"
48
+
49
+ record[field_name] = hash
47
50
  end
48
51
  }
49
52
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-xml-simple-filter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Lukyanov