fluent-plugin-logdna 0.1.6 → 0.1.7

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,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: '0398268bf9892c432c3967e42597f632f7ee7649'
4
- data.tar.gz: 8af44955e3a216ee649e5f24a4f0f9704895fe73
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YjQ0M2E5NzA3ZmUxM2VlMjg0ZTJmMTgyYmM1M2Q5YjI0YjZiZTRiMQ==
5
+ data.tar.gz: !binary |-
6
+ YmU2ZmViY2E0MTg4MzI0OTNkZTVjZDhhZDUxMDZjMWE4NTM4YjcxYQ==
5
7
  SHA512:
6
- metadata.gz: 417514d84e3013f733980cfb9246a0b24b185edc7a01a90fad0f6a7ed2ad5b4ac2ac23aacb26e8481ba896072a3cfdebd07c9f48b01c108d1a6204b5f52552d6
7
- data.tar.gz: fc8bb95df974512ce1e1dc46bdeda3a0b3e78f26cc20467858ead062784591fa3ef28c0022bd17cccbad8acce20b4c800d1480a7ff3d17ed419b805b71b0931e
8
+ metadata.gz: !binary |-
9
+ MDVlNTBiMDQ1MWRmMzcxMzdiZDg0M2I0OWE4MmVhODRmY2VjZWI5ZjE4YmM1
10
+ NzBkMTQwMzY3NzliMTVmYzgxMjMyM2Q2NzA2NDA5MDZjNDM0ZDJiZDEwNWU0
11
+ NzlkY2ExYWYwNTFlZmM0ZTQ0ZDRmZDk2OTAyZGUyNzU0NzBhYzQ=
12
+ data.tar.gz: !binary |-
13
+ N2JiZjBkMjAxNGQ2ZTcyYWU0OGJmMTZjYzY3YzhiNzU0NjA5MmUyNjM2NTI0
14
+ MjA2YzFmNjg4MzRjZDFkYjA1YmI2ZGE5ODlhYjg5MGJhY2FiZWZlNzE3ZjBk
15
+ OThjN2NjZjA4MWRlN2E5OWJhNjU5ZDEyMWIxNWEwZjA2MThjYWY=
@@ -3,7 +3,7 @@ require 'date'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'fluent-plugin-logdna'
6
- s.version = '0.1.6'
6
+ s.version = '0.1.7'
7
7
  s.date = Date.today.to_s
8
8
  s.summary = 'LogDNA plugin for Fluentd'
9
9
  s.description = 'Fluentd plugin for supplying output to LogDNA.'
@@ -51,7 +51,7 @@ module Fluent
51
51
 
52
52
  chunk.msgpack_each do |(tag, time, record)|
53
53
  line = gather_line_data(tag, time, record)
54
- data << line
54
+ data << line unless line[:line].empty?
55
55
  end
56
56
 
57
57
  { lines: data }
metadata CHANGED
@@ -1,53 +1,53 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-logdna
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edwin Lai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-20 00:00:00.000000000 Z
11
+ date: 2017-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.12.0
20
- - - "<"
20
+ - - <
21
21
  - !ruby/object:Gem::Version
22
22
  version: '2'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - ">="
27
+ - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: 0.12.0
30
- - - "<"
30
+ - - <
31
31
  - !ruby/object:Gem::Version
32
32
  version: '2'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: http
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - "~>"
37
+ - - ~>
38
38
  - !ruby/object:Gem::Version
39
39
  version: '2.0'
40
- - - ">="
40
+ - - ! '>='
41
41
  - !ruby/object:Gem::Version
42
42
  version: 2.0.3
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - "~>"
47
+ - - ~>
48
48
  - !ruby/object:Gem::Version
49
49
  version: '2.0'
50
- - - ">="
50
+ - - ! '>='
51
51
  - !ruby/object:Gem::Version
52
52
  version: 2.0.3
53
53
  description: Fluentd plugin for supplying output to LogDNA.
@@ -56,8 +56,8 @@ executables: []
56
56
  extensions: []
57
57
  extra_rdoc_files: []
58
58
  files:
59
- - ".gitignore"
60
- - ".ruby-version"
59
+ - .gitignore
60
+ - .ruby-version
61
61
  - LICENSE
62
62
  - README.md
63
63
  - fluent-plugin-logdna.gemspec
@@ -72,17 +72,17 @@ require_paths:
72
72
  - lib
73
73
  required_ruby_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
- - - ">="
75
+ - - ! '>='
76
76
  - !ruby/object:Gem::Version
77
77
  version: 2.0.0
78
78
  required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - ! '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.6.8
85
+ rubygems_version: 2.6.11
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: LogDNA plugin for Fluentd