forked from GoogleCloudPlatform/fluent-plugin-google-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfluent-plugin-google-cloud.gemspec
More file actions
31 lines (28 loc) · 1.31 KB
/
fluent-plugin-google-cloud.gemspec
File metadata and controls
31 lines (28 loc) · 1.31 KB
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
Gem::Specification.new do |gem|
gem.name = 'fluent-plugin-google-cloud'
gem.description = <<-eos
Fluentd output plugin for the Google Cloud Logging API, which will make
logs viewable in the Developer Console's log viewer and can optionally
store them in Google Cloud Storage and/or BigQuery.
This is an official Google Ruby gem.
eos
gem.summary = 'fluentd output plugin for the Google Cloud Logging API'
gem.homepage = \
'https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud'
gem.license = 'Apache 2.0'
gem.version = '0.4.12'
gem.authors = ['Todd Derr', 'Alex Robinson']
gem.email = ['salty@google.com']
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', '~> 0.10'
gem.add_runtime_dependency 'google-api-client', '>= 0.8.6', '<= 0.9'
gem.add_runtime_dependency 'googleauth', '~> 0.4'
gem.add_runtime_dependency 'json', '~> 1.8'
gem.add_development_dependency 'mocha', '~> 1.1'
gem.add_development_dependency 'rake', '~> 10.3'
gem.add_development_dependency 'rubocop', '= 0.34.2'
gem.add_development_dependency 'webmock', '~> 1.17'
gem.add_development_dependency 'test-unit', '~> 3.0'
end