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

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14351af79c7df9366cfc6a13c79b5c71838061a7
4
- data.tar.gz: 6e878500efbd966333491a076398fdecddb0ea84
3
+ metadata.gz: b97239351f7e2ecd61c804d4c64493061cb9fbe4
4
+ data.tar.gz: 48f1031d77662fe42b16921ce0cbbfd901969ac2
5
5
  SHA512:
6
- metadata.gz: f1486b5dd7a4a8fdb08624a83b759c3bde3f8e2430aab6ef24db0c4e32489954780ed8f87093953fc927b9312694bbf7e156ea3f7c01aef36dc7a4788879b5cf
7
- data.tar.gz: dfb72401323861585cc2872bad8cc1a048feaacd7453ba5ef3b4e400f09041804bc7cab6850750218fe9cbc508a1eacd07fb8cf3fdddb03b96e7b129b6ceaa26
6
+ metadata.gz: b227c82181c3fc7c058c537a0ac13773756e2aa389bc917ef05a9473bc51f830b150c2346390e2c67014c05b65d8de35e9327de9175d810f200cfd55fa5c8035
7
+ data.tar.gz: 0454941ed7c8c28ef51cd2085e1eaf84ae59c314fb67406deadcb0e7f6fcbcdcabe4dd28ec798e61d57b261136d87ba0d9067f57a4971b029d7e13ed8ac3dbff
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.14
1
+ 0.0.15
@@ -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.14 ruby lib
5
+ # stub: fluent-plugin-xml-simple-filter 0.0.15 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.14"
9
+ s.version = "0.0.15"
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]
@@ -58,7 +58,7 @@ module Fluent
58
58
  def convert_times(hash)
59
59
  hash.each { |key, value|
60
60
  hash[key] = value.class == Hash ? convert_times(value) : try_to_convert(value) { |x|
61
- self.time_format ? Time.strptime(x, self.time_format) : Time.parse(x)
61
+ EventTime.from_time(self.time_format ? Time.strptime(x, self.time_format) : Time.parse(x))
62
62
  }
63
63
  }
64
64
  end
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.14
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Lukyanov