forked from EverythingMe/logstash-scribeinput
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlogstash-input-scribe.gemspec
More file actions
25 lines (20 loc) · 989 Bytes
/
logstash-input-scribe.gemspec
File metadata and controls
25 lines (20 loc) · 989 Bytes
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
Gem::Specification.new do |s|
s.name = 'logstash-input-scribe'
s.version = '0.0.1'
s.licenses = ['Apache License (2.0)']
s.summary = "A logstash input plugin which receives scribe log entries via thrift"
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
s.authors = ["Daniel Pañeda"]
s.email = 'dpaneda@tuenti.com'
s.homepage = ""
s.require_paths = ["lib"]
s.platform = "java"
# Files
s.files = Dir['lib/**/*', '*.gemspec','*.md', 'Gemfile']
# Special flag to let us know this is actually a logstash plugin
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
# Gem dependencies
s.add_runtime_dependency "logstash-core", ">= 2.0.0", "< 3.0.0"
# avoids to install it on the fly when jar-dependencies needs it
s.add_development_dependency 'ruby-maven', '~> 3.3', '>= 3.3.8'
end