forked from GoogleCloudPlatform/fluent-plugin-google-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-google-cloud.gemspec
47 lines (44 loc) · 2.18 KB
/
fluent-plugin-google-cloud.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Gem::Specification.new do |gem|
gem.name = 'fluent-plugin-google-cloud'
gem.description = <<-eos
Fluentd plugins for the Stackdriver Logging API, which will make logs
viewable in the Stackdriver Logs Viewer and can optionally store them
in Google Cloud Storage and/or BigQuery.
This is an official Google Ruby gem.
eos
gem.summary = 'fluentd plugins for the Stackdriver Logging API'
gem.homepage =
'https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud'
gem.license = 'Apache-2.0'
gem.version = '0.8.6'
gem.authors = ['Stackdriver Agents Team']
gem.email = ['stackdriver-agents@google.com']
gem.required_ruby_version = Gem::Requirement.new('>= 2.2')
gem.files = Dir['**/*'].keep_if { |file| File.file?(file) }
gem.test_files = gem.files.grep(/^(test)/)
gem.require_paths = ['lib']
gem.add_runtime_dependency 'fluentd', '1.7.4'
gem.add_runtime_dependency 'googleapis-common-protos', '1.3.9'
gem.add_runtime_dependency 'googleauth', '0.9.0'
gem.add_runtime_dependency 'google-api-client', '0.30.8'
gem.add_runtime_dependency 'google-cloud-logging', '1.6.6'
gem.add_runtime_dependency 'google-protobuf', '3.9.0'
gem.add_runtime_dependency 'grpc', '1.22.0'
gem.add_runtime_dependency 'json', '2.2.0'
gem.add_runtime_dependency 'opencensus', '0.5.0'
gem.add_runtime_dependency 'opencensus-stackdriver', '0.3.2'
gem.add_development_dependency 'mocha', '1.9.0'
# Keep this the same as in
# https://github.com/fluent/fluent-plugin-prometheus/blob/master/fluent-plugin-prometheus.gemspec
gem.add_development_dependency 'prometheus-client', '< 0.10'
# TODO(qingling128): Upgrade rake to 11.0+ after the following issues are
# fixed because rake (11.0+) requires ALL variables to be explicitly
# initialized.
# https://github.com/googleapis/google-auth-library-ruby/issues/227
# https://github.com/farcaller/rly/issues/2
gem.add_development_dependency 'rake', '10.5.0'
gem.add_development_dependency 'rubocop', '0.39.0'
gem.add_development_dependency 'test-unit', '3.3.3'
gem.add_development_dependency 'webmock', '3.6.2'
gem.add_development_dependency 'coveralls', '0.8.23'
end