fluent-plugin-firehose 0.0.4 → 0.0.5

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: e0da463c98bbb7c5d2bb4454164b31b83fce2642
4
- data.tar.gz: 44684222f2f5449b89f9b7c7d44856e05da275c3
3
+ metadata.gz: 2524a1b0ccffd35b9757f527a8f114df2a29e4b6
4
+ data.tar.gz: f2bfc58a14c833058a9e079adff3013579589f3e
5
5
  SHA512:
6
- metadata.gz: e00dcb09b1c27b380b15abe13b66f76d1e5b4ebef17a403dbfad6c0f70517860e128de85dab913c8710b851048b437006e28c121a200a5570939030813ba8df6
7
- data.tar.gz: 6a561ae5b3c67c74134bdbf42d2aa5181ffa920227e404e3622cb2331ae1a0de0fdb86fc5345de1c60c49f9077da6020b08383c76a70f72668f49e7b8008b03a
6
+ metadata.gz: b023e4aad6b471f915475eba4f128fda7540cccd1d855734605aea18df931a508db8871150247f8b6cb93c003f45af2559a2eef9e52954af6946d8835049635a
7
+ data.tar.gz: 7580b1cf96ddcecffcf7bf0342ea69a96de73e87d96c9af0ab933e9611080083f08f2057e60986c6f8c4e600ab9d64c5841db4a7e2265aa9ec30c763700eb946
data/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- # Copyright 2015 Ji Oh Yoo
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
5
5
  # may not use this file except in compliance with the License. A copy of
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent-plugin-firehose (0.0.2)
4
+ fluent-plugin-firehose (0.1.0)
5
5
  aws-sdk-core (>= 2.0.12, < 3.0)
6
6
  fluentd (>= 0.10.53, < 0.13)
7
7
  msgpack (>= 0.5.8)
data/LICENSE.txt CHANGED
@@ -188,7 +188,7 @@
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
191
+ Copyright 2015 Ji Oh Yoo. All Rights Reserved.
192
192
 
193
193
  Licensed under the Apache License, Version 2.0 (the "License");
194
194
  you may not use this file except in compliance with the License.
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- # Copyright 2015 Ji Oh Yoo
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
5
5
  # may not use this file except in compliance with the License. A copy of
@@ -1,5 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- # Copyright 2015 Ji Oh Yoo
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
5
5
  # may not use this file except in compliance with the License. A copy of
@@ -1,5 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- # Copyright 2015 Ji Oh Yoo
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
5
5
  # may not use this file except in compliance with the License. A copy of
@@ -34,8 +34,8 @@ module FluentPluginFirehose
34
34
 
35
35
  Fluent::Plugin.register_output('firehose', self)
36
36
 
37
- config_set_default :include_time_key, true
38
- config_set_default :include_tag_key, true
37
+ config_set_default :include_time_key, false
38
+ config_set_default :include_tag_key, false
39
39
 
40
40
  config_param :aws_key_id, :string, default: nil, :secret => true
41
41
  config_param :aws_sec_key, :string, default: nil, :secret => true
@@ -1,5 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- # Copyright 2015 Ji Oh Yoo
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
5
5
  # may not use this file except in compliance with the License. A copy of
@@ -13,5 +13,5 @@
13
13
  # language governing permissions and limitations under the License.
14
14
 
15
15
  module FluentPluginFirehose
16
- VERSION = '0.0.4'
16
+ VERSION = '0.0.5'
17
17
  end
data/test/helper.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
2
3
  #
3
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
4
5
  # may not use this file except in compliance with the License. A copy of
@@ -1,5 +1,5 @@
1
1
  # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- # Copyright 2015 Ji Oh Yoo
2
+ # Copyright 2015 Ji Oh Yoo. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"). You
5
5
  # may not use this file except in compliance with the License. A copy of
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-firehose
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ji Oh Yoo