-
Notifications
You must be signed in to change notification settings - Fork 310
/
fluent-plugin-elasticsearch.gemspec
38 lines (31 loc) · 1.49 KB
/
fluent-plugin-elasticsearch.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
32
33
34
35
36
37
38
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'fluent-plugin-elasticsearch'
s.version = '5.4.3'
s.authors = ['diogo', 'pitr', 'Hiroshi Hatake']
s.description = %q{Elasticsearch output plugin for Fluent event collector}
s.summary = s.description
s.homepage = 'https://github.com/uken/fluent-plugin-elasticsearch'
s.license = 'Apache-2.0'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
if s.respond_to?(:metadata)
s.metadata["changelog_uri"] = "https://github.com/uken/fluent-plugin-elasticsearch/blob/master/History.md"
end
s.required_ruby_version = Gem::Requirement.new(">= 2.3".freeze)
s.add_runtime_dependency 'fluentd', '>= 0.14.22'
s.add_runtime_dependency 'faraday', '>= 2.0.0'
s.add_runtime_dependency 'faraday-excon', '>= 2.0.0'
s.add_runtime_dependency 'excon', '>= 0'
s.add_runtime_dependency 'elasticsearch'
s.add_development_dependency 'rake', '>= 0'
s.add_development_dependency 'webrick', '~> 1.7.0'
s.add_development_dependency 'webmock', '~> 3'
s.add_development_dependency 'test-unit', '~> 3.3.0'
s.add_development_dependency 'minitest', '~> 5.8'
s.add_development_dependency 'flexmock', '~> 2.0'
end