-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathfluent-plugin-prometheus.gemspec
More file actions
22 lines (20 loc) · 1012 Bytes
/
fluent-plugin-prometheus.gemspec
File metadata and controls
22 lines (20 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-prometheus"
spec.version = "2.2.2"
spec.authors = ["Masahiro Sano"]
spec.email = ["sabottenda@gmail.com"]
spec.summary = %q{A fluent plugin that collects metrics and exposes for Prometheus.}
spec.description = %q{A fluent plugin that collects metrics and exposes for Prometheus.}
spec.homepage = "https://github.com/fluent/fluent-plugin-prometheus"
spec.license = "Apache-2.0"
spec.files = `git ls-files -z`.split("\x0")
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_dependency "fluentd", ">= 1.9.1", "< 2"
spec.add_dependency "prometheus-client", ">= 2.1.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "test-unit"
end