-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfluent-plugin-gcs.gemspec
25 lines (22 loc) · 1004 Bytes
/
fluent-plugin-gcs.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fluent/plugin/gcs/version'
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-gcs"
spec.version = Fluent::GCSPlugin::VERSION
spec.authors = ["Daichi HIRATA"]
spec.summary = "Google Cloud Storage output plugin for Fluentd"
spec.description = "Google Cloud Storage output plugin for Fluentd"
spec.homepage = "https://github.com/daichirata/fluent-plugin-gcs"
spec.license = "Apache-2.0"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "fluentd", [">= 0.14.22", "< 2"]
spec.add_runtime_dependency "google-cloud-storage", "~> 1.1"
end