-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-zebrium_output.gemspec
28 lines (24 loc) · 1.21 KB
/
fluent-plugin-zebrium_output.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-zebrium_output"
gem.version = `cat version.txt`
gem.authors = ["Zebrium, Inc"]
gem.description = %q{Output plugin to Zebrium HTTP LOG COLLECTOR SERVER}
gem.summary = %q{Zebrium fluentd output plugin}
gem.homepage = "https://github.com/Zebrium/fluentd-output-zebrium"
gem.license = "Apache-2.0"
gem.metadata = { "git-version" => `git log -n 1 --pretty=format:"%H"` }
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.0.0'
gem.add_development_dependency 'bundler', '~> 2', '>= 2.2.33'
gem.add_development_dependency 'rake', '~> 13'
gem.add_development_dependency 'test-unit', '~> 3.1', '>= 3.1.0'
gem.add_development_dependency 'codecov', '~> 0.1', '>= 0.1.10'
gem.add_runtime_dependency 'fluentd', '~> 1.14', '>= 1.14.2'
gem.add_runtime_dependency 'httpclient', '~> 2.8', '>= 2.8.0'
end