Sha256: 26e3a9446b8b57300e6344a38f1b7b0e3b4500f77c179eb6e63427d72df59e11
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# encoding: utf-8 $:.push File.expand_path('../lib', __FILE__) Gem::Specification.new do |gem| gem.name = "fluent-plugin-gcloud-pubsub" gem.description = "Google Cloud Pub/Sub input/output plugin for Fluentd event collector" gem.license = "MIT" gem.homepage = "https://github.com/mdoi/fluent-plugin-gcloud-pubsub" gem.summary = gem.description gem.version = "0.0.1" gem.authors = ["Masayuki DOI"] gem.email = "dotquasar@gmail.com" gem.has_rdoc = false 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" gem.add_runtime_dependency "gcloud", ">= 0.2.0" gem.add_runtime_dependency "fluent-plugin-buffer-lightening", ">= 0.0.2" gem.add_development_dependency "bundler" gem.add_development_dependency "rake" gem.add_development_dependency "test-unit" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-gcloud-pubsub-0.0.1 | fluent-plugin-gcloud-pubsub.gemspec |