forked from codekitchen/logstash-input-kinesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logstash-input-kinesis.gemspec
30 lines (25 loc) · 1.35 KB
/
logstash-input-kinesis.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'logstash/inputs/kinesis/version'
Gem::Specification.new do |spec|
spec.name = "logstash-input-kinesis"
spec.version = Logstash::Input::Kinesis::VERSION
spec.authors = ["Brian Palmer"]
spec.email = ["[email protected]"]
spec.summary = %q{Logstash plugin for Kinesis input}
spec.description = %q{This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program}
spec.homepage = "https://github.com/codekitchen/logstash-input-kinesis"
spec.licenses = ['Apache License (2.0)']
spec.files = `git ls-files`.split($\)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
# Special flag to let us know this is actually a logstash plugin
spec.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
spec.platform = 'java'
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.2.0"
spec.add_development_dependency "logstash-core", ">= 1.5.1"
spec.add_development_dependency "logstash-codec-json"
end