fluent-plugin-google-cloud 0.6.11.pre.memory.2 → 0.6.11.pre.memory.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +10 -8
- data/fluent-plugin-google-cloud.gemspec +2 -2
- data/lib/fluent/plugin/out_google_cloud.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c60cd54f8d13fdfc46590fc64aee9e63d136d831
|
4
|
+
data.tar.gz: 5a96b30d3b466f1539bf31f5006151f1cff1b465
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf204de65d748d9b461c856119c33f70b8063a14d0e104854aaa516f17a7ffd25760d3cab0922a1b660e46649e56e69928f879d1dc5b8dce6294188e6c91d812
|
7
|
+
data.tar.gz: 264e23dfbee0e3da35cd8e6d7df360d3e959fda6432bbd274ab02d91692d2fcffa2b423a6c27035a790ccf8beaeca1bcb63f32a3419ccd646a7e6de601c41d11
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fluent-plugin-google-cloud (0.6.11.pre.memory.
|
4
|
+
fluent-plugin-google-cloud (0.6.11.pre.memory.3)
|
5
5
|
fluentd (~> 0.10)
|
6
6
|
google-api-client (~> 0.14)
|
7
|
-
google-cloud-logging (~> 0
|
7
|
+
google-cloud-logging (~> 1.2, < 1.3.0)
|
8
8
|
googleapis-common-protos (~> 1.3)
|
9
9
|
googleauth (~> 0.5)
|
10
10
|
grpc (~> 1.0, <= 1.4.5)
|
@@ -41,12 +41,14 @@ GEM
|
|
41
41
|
mime-types (~> 3.0)
|
42
42
|
representable (~> 3.0)
|
43
43
|
retriable (>= 2.0, < 4.0)
|
44
|
-
google-cloud-core (
|
45
|
-
|
46
|
-
google-cloud-
|
47
|
-
|
44
|
+
google-cloud-core (1.1.0)
|
45
|
+
google-cloud-env (~> 1.0)
|
46
|
+
google-cloud-env (1.0.1)
|
47
|
+
faraday (~> 0.11)
|
48
|
+
google-cloud-logging (1.2.3)
|
49
|
+
google-cloud-core (~> 1.0)
|
48
50
|
google-gax (~> 0.8.0)
|
49
|
-
stackdriver-core (~>
|
51
|
+
stackdriver-core (~> 1.2)
|
50
52
|
google-gax (0.8.10)
|
51
53
|
google-protobuf (~> 3.2)
|
52
54
|
googleapis-common-protos (~> 1.3.5)
|
@@ -125,7 +127,7 @@ GEM
|
|
125
127
|
faraday (~> 0.9)
|
126
128
|
jwt (>= 1.5, < 3.0)
|
127
129
|
multi_json (~> 1.10)
|
128
|
-
stackdriver-core (
|
130
|
+
stackdriver-core (1.2.0)
|
129
131
|
strptime (0.1.9)
|
130
132
|
test-unit (3.2.6)
|
131
133
|
power_assert
|
@@ -10,7 +10,7 @@ eos
|
|
10
10
|
gem.homepage =
|
11
11
|
'https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud'
|
12
12
|
gem.license = 'Apache-2.0'
|
13
|
-
gem.version = '0.6.11.pre.memory.
|
13
|
+
gem.version = '0.6.11.pre.memory.3'
|
14
14
|
gem.authors = ['Todd Derr', 'Alex Robinson']
|
15
15
|
gem.email = ['salty@google.com']
|
16
16
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
@@ -22,7 +22,7 @@ eos
|
|
22
22
|
gem.add_runtime_dependency 'fluentd', '~> 0.10'
|
23
23
|
gem.add_runtime_dependency 'googleapis-common-protos', '~> 1.3'
|
24
24
|
gem.add_runtime_dependency 'google-api-client', '~> 0.14'
|
25
|
-
gem.add_runtime_dependency 'google-cloud-logging', '~>
|
25
|
+
gem.add_runtime_dependency 'google-cloud-logging', '~> 1.2', '< 1.3.0'
|
26
26
|
gem.add_runtime_dependency 'googleauth', '~> 0.5'
|
27
27
|
gem.add_runtime_dependency 'grpc', '~> 1.0', '<= 1.4.5'
|
28
28
|
gem.add_runtime_dependency 'json', '~> 1.8'
|
@@ -195,7 +195,7 @@ module Fluent
|
|
195
195
|
Fluent::Plugin.register_output('google_cloud', self)
|
196
196
|
|
197
197
|
PLUGIN_NAME = 'Fluentd Google Cloud Logging plugin'.freeze
|
198
|
-
PLUGIN_VERSION = '0.6.11.pre.memory.
|
198
|
+
PLUGIN_VERSION = '0.6.11.pre.memory.3'.freeze
|
199
199
|
|
200
200
|
# Name of the the Google cloud logging write scope.
|
201
201
|
LOGGING_SCOPE = 'https://www.googleapis.com/auth/logging.write'.freeze
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-google-cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.11.pre.memory.
|
4
|
+
version: 0.6.11.pre.memory.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Todd Derr
|
@@ -59,14 +59,20 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: '
|
62
|
+
version: '1.2'
|
63
|
+
- - "<"
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 1.3.0
|
63
66
|
type: :runtime
|
64
67
|
prerelease: false
|
65
68
|
version_requirements: !ruby/object:Gem::Requirement
|
66
69
|
requirements:
|
67
70
|
- - "~>"
|
68
71
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
72
|
+
version: '1.2'
|
73
|
+
- - "<"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.3.0
|
70
76
|
- !ruby/object:Gem::Dependency
|
71
77
|
name: googleauth
|
72
78
|
requirement: !ruby/object:Gem::Requirement
|