-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfluent-plugin-k8s-metrics-agg.gemspec
33 lines (28 loc) · 1.38 KB
/
fluent-plugin-k8s-metrics-agg.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
33
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-k8s-metrics-agg'
spec.version = File.read('VERSION')
spec.authors = ['Splunk Inc.']
spec.email = ['[email protected]']
spec.summary = %q{A fluentd input plugin that collects kubernetes cluster metrics.}
spec.description = %q{A fluentd input plugin that collects node and container metrics from a kubernetes cluster via kubeapiserver API.}
spec.homepage = 'https://github.com/splunk/fluent-plugin-k8s-metrics-agg'
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 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'test-unit', "~> 3.3.0"
spec.add_development_dependency "simplecov", '~> 0.16.1'
spec.add_development_dependency 'webmock', '~> 3.5.1'
spec.add_runtime_dependency 'fluentd', '>= 1.9.1'
spec.add_runtime_dependency 'kubeclient', '~> 4.9.3'
spec.add_runtime_dependency 'multi_json', '~> 1.14.1'
spec.add_runtime_dependency 'oj', '~> 3.10.2'
end