-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-quota-throttle.gemspec
executable file
·30 lines (26 loc) · 1.35 KB
/
fluent-plugin-quota-throttle.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
# 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-quota-throttle"
spec.version = "0.0.3"
spec.authors = ["Athish Pranav D", "Dipendra Singh", "Rubrik Inc."]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{Fluentd filter for throttling logs based on a configurable quotas.}
spec.homepage = "https://github.com/rubrikinc/fluent-plugin-quota-throttle"
spec.license = "Apache-2.0"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler"
spec.add_development_dependency "minitest" , "~> 5.14"
spec.add_development_dependency "test-unit" , "~> 3.6"
spec.add_development_dependency "rake" , "~> 13.0"
spec.add_development_dependency "mutex_m" , "~> 0.1"
spec.add_development_dependency "webrick" , "~> 1.8"
spec.add_development_dependency "csv" , "~> 3.3"
spec.add_development_dependency "base64" , "~> 0.2"
spec.add_runtime_dependency "fluentd" , "~> 1.9"
spec.add_runtime_dependency "fluent-plugin-prometheus", " = 2.1.0"
end