forked from fluent/fluent-plugin-splunk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfluent-plugin-splunk-enterprise.gemspec
More file actions
31 lines (26 loc) · 1.07 KB
/
fluent-plugin-splunk-enterprise.gemspec
File metadata and controls
31 lines (26 loc) · 1.07 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
27
28
29
30
31
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-splunk-enterprise"
spec.version = "0.9.1"
spec.authors = ["Yuki Ito", "Masahiro Nakagawa"]
spec.email = ["yito@treasure-data.com", "repeatedly@gmail.com"]
spec.summary = %q{Splunk output plugin for Fluentd}
spec.description = spec.summary
spec.homepage = ""
spec.has_rdoc = false
spec.license = "Apache-2.0"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency 'fluentd', [">= 0.12.0"]
spec.add_dependency 'json'
spec.add_dependency 'httpclient'
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "test-unit", ">= 3.0.8"
spec.add_development_dependency "simplecov", ">= 0.10.0"
end