-
Notifications
You must be signed in to change notification settings - Fork 19
/
fluent-plugin-winevtlog.gemspec
28 lines (25 loc) · 1.34 KB
/
fluent-plugin-winevtlog.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
# 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-windows-eventlog"
spec.version = "0.9.0"
spec.authors = ["okahashi117", "Hiroshi Hatake", "Masahiro Nakagawa"]
spec.summary = %q{Fluentd Input plugin to read windows event log.}
spec.description = %q{Fluentd Input plugin to read windows event log.}
spec.homepage = "https://github.com/fluent/fluent-plugin-windows-eventlog"
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_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit", "~> 3.4.0"
spec.add_development_dependency "nokogiri", [">= 1.10", "< 1.15"]
spec.add_development_dependency "fluent-plugin-parser-winevt_xml", ">= 0.1.2"
spec.add_runtime_dependency "fluentd", [">= 0.14.12", "< 2"]
spec.add_runtime_dependency "win32-eventlog"
spec.add_runtime_dependency "winevt_c", ">= 0.11.0"
end