fluent-plugin-firehose 0.0.10 → 0.0.11
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/Gemfile +0 -1
- data/LICENSE.txt +0 -1
- data/Rakefile +0 -1
- data/fluent-plugin-firehose.gemspec +2 -3
- data/lib/fluent/plugin/{version.rb → fluent-plugin-firehose-version.rb} +1 -2
- data/lib/fluent/plugin/out_firehose.rb +1 -2
- data/test/helper.rb +0 -1
- data/test/plugin/test_out_kinesis.rb +0 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12a8ca713ce2497847cbab9d6e3e52fea296e94c
|
|
4
|
+
data.tar.gz: 5a8982848a726d07dc37e4d5e712bc8bbc0773e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0b72925369557fec7205ff9bb58631d507fd0283aa33dc308556071769f9e26319852eab6fc7dba7859186ac343dbfb6da95a86829d9b76c2b6d044de592988
|
|
7
|
+
data.tar.gz: 35d9285d6a4fb6a129a6b2b17f0dbe043fd6379cc5e8c91b227ef5f8f3ed85dd3ffdc2f66de836f2ec901bb14b318290812aa213c8b25a61fb69f2ae8ee2c4ca
|
data/Gemfile
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
data/LICENSE.txt
CHANGED
|
@@ -188,7 +188,6 @@
|
|
|
188
188
|
identification within third-party archives.
|
|
189
189
|
|
|
190
190
|
Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
191
|
-
Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
192
191
|
|
|
193
192
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
194
193
|
you may not use this file except in compliance with the License.
|
data/Rakefile
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -16,12 +15,12 @@
|
|
|
16
15
|
lib = File.expand_path('../lib', __FILE__)
|
|
17
16
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
18
17
|
|
|
19
|
-
require "fluent/plugin/version"
|
|
18
|
+
require "fluent/plugin/fluent-plugin-firehose-version"
|
|
20
19
|
|
|
21
20
|
Gem::Specification.new do |spec|
|
|
22
21
|
spec.name = "fluent-plugin-firehose"
|
|
23
22
|
spec.version = FluentPluginFirehose::VERSION
|
|
24
|
-
spec.author = ['
|
|
23
|
+
spec.author = ['Amazon Web Services']
|
|
25
24
|
spec.summary = %q{Fluentd output plugin that sends events to Amazon Kinesis Firehose.}
|
|
26
25
|
spec.license = "Apache License, Version 2.0"
|
|
27
26
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -13,5 +12,5 @@
|
|
|
13
12
|
# language governing permissions and limitations under the License.
|
|
14
13
|
|
|
15
14
|
module FluentPluginFirehose
|
|
16
|
-
VERSION = '0.0.
|
|
15
|
+
VERSION = '0.0.11'
|
|
17
16
|
end
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -17,7 +16,7 @@ require 'multi_json'
|
|
|
17
16
|
require 'yajl'
|
|
18
17
|
require 'logger'
|
|
19
18
|
require 'securerandom'
|
|
20
|
-
require 'fluent/plugin/version'
|
|
19
|
+
require 'fluent/plugin/fluent-plugin-firehose-version'
|
|
21
20
|
require 'zlib'
|
|
22
21
|
|
|
23
22
|
module FluentPluginFirehose
|
data/test/helper.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
# Copyright 2015 Ji Oh Yoo. All Rights Reserved.
|
|
3
2
|
#
|
|
4
3
|
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
5
4
|
# may not use this file except in compliance with the License. A copy of
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-firehose
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Ji Oh Yoo
|
|
8
7
|
- Amazon Web Services
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: bundler
|
|
@@ -134,8 +133,8 @@ files:
|
|
|
134
133
|
- README.md
|
|
135
134
|
- Rakefile
|
|
136
135
|
- fluent-plugin-firehose.gemspec
|
|
136
|
+
- lib/fluent/plugin/fluent-plugin-firehose-version.rb
|
|
137
137
|
- lib/fluent/plugin/out_firehose.rb
|
|
138
|
-
- lib/fluent/plugin/version.rb
|
|
139
138
|
- test/helper.rb
|
|
140
139
|
- test/plugin/test_out_kinesis.rb
|
|
141
140
|
homepage:
|