Sha256: b9a79c43e05676cbe1982c344d8eadd2ac505d75294d70d541a4ebd8c1de3d3b

Contents?: true

Size: 1.6 KB

Versions: 5

Compression:

Stored size: 1.6 KB

Contents

# 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         = ["brian@codekitchen.net"]
  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/logstash-plugins/logstash-input-kinesis"
  spec.licenses      = ['Apache License (2.0)']

  spec.files         = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib', 'vendor/jar-dependencies/runtime-jars']

  # Special flag to let us know this is actually a logstash plugin
  spec.metadata      = { "logstash_plugin" => "true", "logstash_group" => "input" }

  spec.platform      = 'java'

  spec.requirements << "jar 'com.amazonaws:amazon-kinesis-client', '1.7.0'"
  spec.requirements << "jar 'com.amazonaws:aws-java-sdk-core', '1.11.16'"

  spec.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"

  spec.add_development_dependency 'logstash-devutils'
  spec.add_development_dependency 'jar-dependencies', '~> 0.3.4'
  spec.add_development_dependency "logstash-codec-json"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
logstash-input-kinesis-2.0.6-java logstash-input-kinesis.gemspec
logstash-input-kinesis-2.0.5-java logstash-input-kinesis.gemspec
logstash-input-kinesis-2.0.4-java logstash-input-kinesis.gemspec
logstash-input-kinesis-2.0.3-java logstash-input-kinesis.gemspec
logstash-input-kinesis-2.0.2-java logstash-input-kinesis.gemspec