-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfluent-plugin-zabbix-simple.gemspec
More file actions
24 lines (21 loc) · 1.04 KB
/
fluent-plugin-zabbix-simple.gemspec
File metadata and controls
24 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
# -*- mode:ruby -*-
Gem::Specification.new do |gem|
gem.authors = ["NAKANO Hideo", "Hiroshi Hatake", "Kenji Okimoto"]
gem.email = ["nakano@ilu.co.jp", "cosmo0920.oucc@gmail.com", "okkez000@gmail.com"]
gem.description = %q{Output data plugin to Zabbix}
gem.summary = %q{Output data plugin to Zabbix (like zabbix_sender)}
gem.homepage = "https://github.com/fluent-plugins-nursery/fluent-plugin-zabbix-simple"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "fluent-plugin-zabbix-simple"
gem.require_paths = ["lib"]
gem.version = "2.0.0"
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
gem.add_development_dependency "webrick"
gem.add_development_dependency "test-unit", "~> 3.3.9"
gem.add_runtime_dependency "fluentd", [">= 0.14.15", "< 2"]
gem.add_runtime_dependency "zabbix"
end