-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathfluent-plugin-splunkapi.gemspec
24 lines (21 loc) · 1.05 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
# -*- 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 = ["keisuke.nishida@gmail.com"]
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-persistent", "~> 3.0"
gem.add_runtime_dependency "fluentd"
gem.add_runtime_dependency "net-http-persistent", "~> 3.0"
end