forked from logstash-plugins/logstash-output-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logstash-output-elasticsearch.gemspec
37 lines (29 loc) · 1.19 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
Gem::Specification.new do |s|
s.name = 'logstash-output-elasticsearch'
s.version = '0.1.5'
s.licenses = ['Apache License (2.0)']
s.summary = "Logstash Output to Elasticsearch"
s.description = "Output events to elasticsearch"
s.authors = ["Elasticsearch"]
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" }
# Jar dependencies
s.requirements << "jar 'org.elasticsearch:elasticsearch', '1.3.1'"
# Gem dependencies
s.add_runtime_dependency 'elasticsearch', ['~> 1.0.6']
s.add_runtime_dependency 'stud'
s.add_runtime_dependency 'cabin', ['>=0.6.0']
s.add_runtime_dependency 'ftw', ['~> 0.0.40']
s.add_runtime_dependency 'logstash', '>= 1.4.0', '< 2.0.0'
s.add_runtime_dependency 'jar-dependencies', ['~> 0.0.7']
if RUBY_PLATFORM == 'java'
gem.add_runtime_dependency "manticore"
end
end