-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfluent-plugin-sflow.gemspec
32 lines (27 loc) · 1.13 KB
/
fluent-plugin-sflow.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
29
30
31
32
# 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-sflow"
spec.version = "0.3.3"
spec.authors = ["Shintaro Kojima"]
spec.email = ["[email protected]"]
spec.summary = "sFlow plugin for Fluentd"
spec.description = "sFlow v2 / v4 / v5 input plugin for Fluentd supporting many packet formats"
spec.homepage = "https://github.com/codeout/fluent-plugin-sflow"
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.extensions = ["ext/sflowtool/extconf.rb"]
spec.add_dependency "fluentd", ">=0.14.0", "< 2"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rake-compiler"
spec.add_development_dependency "test-unit"
if RUBY_VERSION.to_i > 2
spec.add_development_dependency "webrick"
end
end