-
Notifications
You must be signed in to change notification settings - Fork 15
/
fluent-plugin-label-router.gemspec
28 lines (24 loc) · 1.13 KB
/
fluent-plugin-label-router.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-label-router"
spec.version = "0.3.2"
spec.authors = ["Banzai Cloud"]
spec.email = ["[email protected]"]
spec.summary = %q{Routing records based on Kubernetes labels.}
spec.description = %q{Label-Router helps routing log messages based on their labels and namespace tag in a Kubernetes environment.}
spec.homepage = "https://github.com/banzaicloud/fluent-plugin-label-router"
spec.license = "Apache-2.0"
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
f.match(%r{^(test|spec|features)/})
end
spec.files = files
spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = test_files
spec.require_paths = ["lib"]
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "test-unit", "~> 3.0"
spec.add_dependency "prometheus-client", ">= 2.1.0"
spec.add_dependency "concurrent-ruby"
spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
end