fluent-plugin-https-client 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +2 -2
- data/fluent-plugin-https-client.gemspec +2 -2
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 615d23c7e9377b1e882ba110a57cc2718dbd1288
|
4
|
+
data.tar.gz: bdaa242a25506de86723a9d3119059bd70c9f52f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9fa7b782fa9499e97636c1ae1b4766809029ac1849a25b407a92a47f3ac491274cf45259a093c5f3b2d12efa2657942d3967fbf616a454cd4dedabc5c3d06da
|
7
|
+
data.tar.gz: b194d868d3f55031342aa1a2c101bf0467c2c775abad887e64f17737ea021f04cb9c4505b09367a70e23226936b0d6d7596f2a955be0071f593c57d31406ac21
|
data/README.md
CHANGED
@@ -33,8 +33,8 @@ Output plugin for [Fluentd](http://fluentd.org), for sending records to an HTTP
|
|
33
33
|
|
34
34
|
|
35
35
|
### Credits
|
36
|
-
* Majority of the code is cloned from
|
37
|
-
* SSL implementation from
|
36
|
+
* Majority of the code is cloned from [fluent-plugin-out-http](https://github.com/ento/fluent-plugin-out-http)
|
37
|
+
* SSL implementation from [fluent-plugin-out-https](https://github.com/kazunori279/fluent-plugin-out-https)
|
38
38
|
|
39
39
|
### Exception Handling
|
40
40
|
* For retries in case of exceptions, use
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = 'fluent-plugin-https-client'
|
5
|
-
gem.version = '0.0.
|
5
|
+
gem.version = '0.0.2'
|
6
6
|
gem.authors = ['Arash Vatanpoor']
|
7
7
|
gem.email = ['arash@a-venture.org']
|
8
8
|
gem.summary = %q{A generic Fluentd output plugin to send records to HTTP / HTTPS endpoint}
|
@@ -16,5 +16,5 @@ Gem::Specification.new do |gem|
|
|
16
16
|
gem.required_ruby_version = '>= 2.1.2'
|
17
17
|
|
18
18
|
gem.add_runtime_dependency 'yajl-ruby', '~> 1.0'
|
19
|
-
gem.add_runtime_dependency 'fluentd', '~> 0.12'
|
19
|
+
gem.add_runtime_dependency 'fluentd', '~> 1.0.0', '>= 0.12'
|
20
20
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-https-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arash Vatanpoor
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yajl-ruby
|
@@ -29,6 +29,9 @@ dependencies:
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.0.0
|
34
|
+
- - ">="
|
32
35
|
- !ruby/object:Gem::Version
|
33
36
|
version: '0.12'
|
34
37
|
type: :runtime
|
@@ -36,6 +39,9 @@ dependencies:
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
38
41
|
- - "~>"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.0.0
|
44
|
+
- - ">="
|
39
45
|
- !ruby/object:Gem::Version
|
40
46
|
version: '0.12'
|
41
47
|
description: A generic Fluentd output plugin to send records to HTTP / HTTPS endpoint,
|