-
Notifications
You must be signed in to change notification settings - Fork 49
/
fluent-plugin-aws-elasticsearch-service.gemspec
31 lines (25 loc) · 1.36 KB
/
fluent-plugin-aws-elasticsearch-service.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-aws-elasticsearch-service"
spec.version = "2.4.1"
spec.authors = ["atomita"]
spec.email = ["[email protected]"]
spec.summary = %q{Output plugin to post to "Amazon Elasticsearch Service".}
spec.description = %q{this is a Output plugin. Post to "Amazon Elasticsearch Service".}
spec.homepage = "https://github.com/atomita/fluent-plugin-aws-elasticsearch-service"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", [">= 1.10", "< 3"]
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "test-unit", "~> 3.0"
spec.add_runtime_dependency "fluentd", [">= 0.14.15", "< 2"]
spec.add_runtime_dependency "fluent-plugin-elasticsearch", [">= 3.3.0", "< 6"]
spec.add_runtime_dependency "aws-sdk-core", "~> 3"
spec.add_runtime_dependency "faraday_middleware-aws-sigv4", "~> 0.3.0"
end