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

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: b97239351f7e2ecd61c804d4c64493061cb9fbe4
4
- data.tar.gz: 48f1031d77662fe42b16921ce0cbbfd901969ac2
3
+ metadata.gz: 62af4d836a84a4dff1e688513467c38884280055
4
+ data.tar.gz: ccc23f750e2e36206ab2ba5edbf801952dcf01c6
5
5
  SHA512:
6
- metadata.gz: b227c82181c3fc7c058c537a0ac13773756e2aa389bc917ef05a9473bc51f830b150c2346390e2c67014c05b65d8de35e9327de9175d810f200cfd55fa5c8035
7
- data.tar.gz: 0454941ed7c8c28ef51cd2085e1eaf84ae59c314fb67406deadcb0e7f6fcbcdcabe4dd28ec798e61d57b261136d87ba0d9067f57a4971b029d7e13ed8ac3dbff
6
+ metadata.gz: 3c6cf57fa040779f73d7b7318461641cd49ba2ef9cc4b1d9c85c693010c86e9c5964f2ce5d6e13b25b45e0843240d97e29bc160973386cab94bf784f59a3ac12
7
+ data.tar.gz: 916010c8f194239654039bc90900ffae668b0ee19be8fae26ec25266ab5890686619b37e89d56511719823bf61b80d6e4d88019aaf739e0e0a2d0294393b00de
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.15
1
+ 0.0.16
@@ -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.15 ruby lib
5
+ # stub: fluent-plugin-xml-simple-filter 0.0.16 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.15"
9
+ s.version = "0.0.16"
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
- EventTime.from_time(self.time_format ? Time.strptime(x, self.time_format) : Time.parse(x))
61
+ Fluent::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.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Lukyanov