forked from logstash-plugins/logstash-output-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogstash-output-elasticsearch.gemspec
39 lines (30 loc) · 1.23 KB
/
logstash-output-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
39
Gem::Specification.new do |s|
s.name = 'logstash-output-elasticsearch'
s.version = '0.2.4'
s.licenses = ['apache-2.0']
s.summary = "Logstash Output to Elasticsearch"
s.description = "Output events to elasticsearch"
s.authors = ["Elastic"]
s.email = '[email protected]'
s.homepage = "http://logstash.net/"
s.require_paths = ["lib"]
# Files
s.files = `git ls-files`.split($\)
# Tests
s.test_files = s.files.grep(%r{^(test|spec|features)/})
# Special flag to let us know this is actually a logstash plugin
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
# Gem dependencies
s.add_runtime_dependency 'concurrent-ruby'
s.add_runtime_dependency 'elasticsearch', ['>= 1.0.6', '~> 1.0']
s.add_runtime_dependency 'stud', ['>= 0.0.17', '~> 0.0']
s.add_runtime_dependency 'cabin', ['~> 0.6']
s.add_runtime_dependency "logstash-core", '>= 1.4.0', '< 2.0.0'
s.add_development_dependency 'ftw', '~> 0.0.42'
s.add_development_dependency 'logstash-input-generator'
if RUBY_PLATFORM == 'java'
s.platform = RUBY_PLATFORM
s.add_runtime_dependency "manticore", '~> 0.3'
end
s.add_development_dependency 'logstash-devutils'
end