fluent-plugin-xml-simple-filter 0.0.13 → 0.0.14

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: 3faca7fef103bfb239fbded3cf422da820a0292e
4
- data.tar.gz: c5a49d47e1a975315978ce88025342fec1743bdd
3
+ metadata.gz: 14351af79c7df9366cfc6a13c79b5c71838061a7
4
+ data.tar.gz: 6e878500efbd966333491a076398fdecddb0ea84
5
5
  SHA512:
6
- metadata.gz: 1b9b91833204a4a8ad824091990d1c7eb8075fce75a3599f00d52e25c50c641a639a0296dc2326c55022dd73f44b6b0c428c17d6689f32152eb0153980afd072
7
- data.tar.gz: 9795cb63772ec327e9e8937a48409f097e38cf6f95b6028d71eb81e7f063874a36d340c956476044a05516f768f08739d04abc183e06833e0c7744223623ff25
6
+ metadata.gz: f1486b5dd7a4a8fdb08624a83b759c3bde3f8e2430aab6ef24db0c4e32489954780ed8f87093953fc927b9312694bbf7e156ea3f7c01aef36dc7a4788879b5cf
7
+ data.tar.gz: dfb72401323861585cc2872bad8cc1a048feaacd7453ba5ef3b4e400f09041804bc7cab6850750218fe9cbc508a1eacd07fb8cf3fdddb03b96e7b129b6ceaa26
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.13
1
+ 0.0.14
@@ -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.13 ruby lib
5
+ # stub: fluent-plugin-xml-simple-filter 0.0.14 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.13"
9
+ s.version = "0.0.14"
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]
@@ -57,7 +57,7 @@ module Fluent
57
57
 
58
58
  def convert_times(hash)
59
59
  hash.each { |key, value|
60
- value.class == Hash ? convert_times(value) : try_to_convert(value) { |x|
60
+ hash[key] = value.class == Hash ? convert_times(value) : try_to_convert(value) { |x|
61
61
  self.time_format ? Time.strptime(x, self.time_format) : Time.parse(x)
62
62
  }
63
63
  }
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.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Lukyanov