Sha256: 1a2e1a04e8b09669e70b88d21ff734f016565f0fd4b5192d93f015437f7a194d
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) Gem::Specification.new do |s| s.name = 'fluent-plugin-elasticsearch' s.version = '5.4.0' 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-elasticsearch-5.4.0 | fluent-plugin-elasticsearch.gemspec |