uken/fluent-plugin-elasticsearch

View on GitHub
fluent-plugin-elasticsearch.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)

Gem::Specification.new do |s|
  s.name          = 'fluent-plugin-elasticsearch'
  s.version       = '5.4.3'
  s.authors       = ['diogo', 'pitr', 'Hiroshi Hatake']
  s.email         = ['pitr.vern@gmail.com', 'me@diogoterror.com', 'cosmo0920.wp@gmail.com']
  s.description   = %q{Elasticsearch output plugin for Fluent event collector}
  s.summary       = s.description
  s.homepage      = 'https://github.com/uken/fluent-plugin-elasticsearch'
  s.license       = 'Apache-2.0'

  s.files         = `git ls-files`.split($/)
  s.executables   = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ['lib']

  if s.respond_to?(:metadata)
    s.metadata["changelog_uri"] = "https://github.com/uken/fluent-plugin-elasticsearch/blob/master/History.md"
  end

  s.required_ruby_version = Gem::Requirement.new(">= 2.3".freeze)

  s.add_runtime_dependency 'fluentd', '>= 0.14.22'
  s.add_runtime_dependency 'faraday', '>= 2.0.0'
  s.add_runtime_dependency 'faraday-excon', '>= 2.0.0'
  s.add_runtime_dependency 'excon', '>= 0'
  s.add_runtime_dependency 'elasticsearch'


  s.add_development_dependency 'rake', '>= 0'
  s.add_development_dependency 'webrick', '~> 1.7.0'
  s.add_development_dependency 'webmock', '~> 3'
  s.add_development_dependency 'test-unit', '~> 3.3.0'
  s.add_development_dependency 'minitest', '~> 5.8'
  s.add_development_dependency 'flexmock', '~> 2.0'
end