forked from k24d/fluent-plugin-splunkapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-splunkapi.gemspec
25 lines (22 loc) · 1.1 KB
/
fluent-plugin-splunkapi.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-splunkapi"
gem.version = "0.2.0"
gem.authors = ["Keisuke Nishida"]
gem.email = ["[email protected]"]
gem.summary = %q{Splunk output plugin (REST API / Storm API) for Fluentd event collector}
gem.description = %q{Splunk output plugin (REST API / Storm API) for Fluentd event collector}
gem.homepage = "https://github.com/k24d/fluent-plugin-splunkapi"
gem.license = 'Apache License, Version 2.0'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.rubyforge_project = "fluent-plugin-splunkapi"
gem.add_development_dependency "fluentd"
gem.add_development_dependency "net-http-persistentx", "< 3.0.0"
gem.add_runtime_dependency "fluentd"
gem.add_runtime_dependency "net-http-persistentx", "< 3.0.0"
gem.add_runtime_dependency "test-unit"
end