forked from uken/fluent-plugin-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-elasticsearch.gemspec
28 lines (23 loc) · 1.03 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'fluent-plugin-elasticsearch'
s.version = '1.4.0'
s.authors = ['diogo', 'pitr']
s.email = ['[email protected]', '[email protected]']
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 = 'MIT'
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']
s.add_runtime_dependency 'fluentd', '>= 0.10.43'
s.add_runtime_dependency 'excon', '>= 0'
s.add_runtime_dependency 'elasticsearch', '>= 0'
s.add_development_dependency 'rake', '>= 0'
s.add_development_dependency 'webmock', '~> 1'
s.add_development_dependency 'test-unit', '~> 3.1.0'
s.add_development_dependency 'minitest', '~> 5.8'
end