-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathfluent-plugin-sumologic_output.gemspec
More file actions
26 lines (23 loc) · 1.05 KB
/
fluent-plugin-sumologic_output.gemspec
File metadata and controls
26 lines (23 loc) · 1.05 KB
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
# 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-sumologic_output"
gem.version = "1.10.0"
gem.authors = ["Steven Adams", "Frank Reno"]
gem.email = ["stevezau@gmail.com", "frank.reno@me.com"]
gem.description = %q{Output plugin to SumoLogic HTTP Endpoint}
gem.summary = %q{Output plugin to SumoLogic HTTP Endpoint}
gem.homepage = "https://github.com/SumoLogic/fluentd-output-sumologic"
gem.license = "Apache-2.0"
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.add_development_dependency "bundler"
gem.add_development_dependency "rake"
gem.add_development_dependency 'test-unit'
gem.add_development_dependency "codecov"
gem.add_runtime_dependency "fluentd"
gem.add_runtime_dependency 'httpclient'
end