forked from mdoi/fluent-plugin-gcloud-pubsub
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathfluent-plugin-gcloud-pubsub-custom.gemspec
More file actions
25 lines (22 loc) · 1.02 KB
/
fluent-plugin-gcloud-pubsub-custom.gemspec
File metadata and controls
25 lines (22 loc) · 1.02 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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-gcloud-pubsub-custom"
gem.description = "Google Cloud Pub/Sub input/output plugin for Fluentd event collector"
gem.license = "MIT"
gem.homepage = "https://github.com/mia-0032/fluent-plugin-gcloud-pubsub-custom"
gem.summary = gem.description
gem.version = "1.6.0"
gem.authors = ["Yoshihiro MIYAI"]
gem.email = "msparrow17@gmail.com"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_runtime_dependency "fluentd", [">= 0.14.15", "< 2"]
gem.add_runtime_dependency "google-cloud-pubsub", "~> 2.3.1"
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit"
gem.add_development_dependency "test-unit-rr"
end