fluent-plugin-sumologic-cloud-syslog 0.1.7 → 0.2.0
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 +5 -5
- data/fluent-plugin-sumologic-cloud-syslog.gemspec +1 -1
- data/lib/sumologic_cloud_syslog/version.rb +1 -1
- data/test/sumologic_cloud_syslog/test_logger.rb +1 -1
- data/test/sumologic_cloud_syslog/test_protocol.rb +1 -1
- data/test/sumologic_cloud_syslog/test_ssl_transport.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e634ad5b4b24542382507706ae8d9d4d341c2c5e09d07a3d54c562e767f3b754
|
|
4
|
+
data.tar.gz: 8e48838f28273939cf00b7447131100d13c5be7feda513254dc76b555bbb6cf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6fa1866f3aef7f2b689667d77a055c9c25151321c2570b2b34960b99b4036caf7c0a26e6782cc11ceb7705424e0545eabfe841f8c3098c140af87301c19dfe68
|
|
7
|
+
data.tar.gz: 68c0a6e606f373fbbf733276894667972dd65e46d29677a3273aa4fccfe2506792fa50955a63c5ce6898c88205354e030dc33fe5684fd253e9cbbdff9a5cef82
|
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
s.require_paths = ['lib']
|
|
32
32
|
s.required_ruby_version = '>= 2.0.0'
|
|
33
33
|
|
|
34
|
-
s.add_runtime_dependency 'fluentd',
|
|
34
|
+
s.add_runtime_dependency 'fluentd', [">= 0.14.0", "< 2"]
|
|
35
35
|
s.add_runtime_dependency 'fluent-mixin-config-placeholders', '~> 0.3'
|
|
36
36
|
s.add_runtime_dependency 'fluent-mixin-plaintextformatter', '~> 0.2'
|
|
37
37
|
|
|
@@ -16,7 +16,7 @@ require 'helper'
|
|
|
16
16
|
require 'date'
|
|
17
17
|
require 'sumologic_cloud_syslog/logger'
|
|
18
18
|
|
|
19
|
-
class
|
|
19
|
+
class LoggerTest < Test::Unit::TestCase
|
|
20
20
|
def test_logger_defaults
|
|
21
21
|
io = StringIO.new
|
|
22
22
|
l = SumologicCloudSyslog::Logger.new(io, "TOKEN")
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-sumologic-cloud-syslog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Acquia Engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-04-04 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
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.14.0
|
|
20
|
+
- - "<"
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
22
|
+
version: '2'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 0.14.0
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
32
|
+
version: '2'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: fluent-mixin-config-placeholders
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -187,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
193
|
version: '0'
|
|
188
194
|
requirements: []
|
|
189
195
|
rubyforge_project:
|
|
190
|
-
rubygems_version: 2.
|
|
196
|
+
rubygems_version: 2.7.6
|
|
191
197
|
signing_key:
|
|
192
198
|
specification_version: 4
|
|
193
199
|
summary: Fluent Sumologic Cloud Syslog plugin
|