forked from acquia/fluent-plugin-syslog_rfc5424
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fluent-plugin-syslog_rfc5424.gemspec
29 lines (23 loc) · 1.17 KB
/
fluent-plugin-syslog_rfc5424.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fluent-plugin-syslog_rfc5424/version'
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-syslog_rfc5424"
spec.version = FluentSyslog5424OutputPlugin::VERSION
spec.authors = ["Pivotal"]
spec.email = %w([email protected])
spec.homepage = "https://github.com/cloudfoundry/fluent-plugin-syslog_rfc5424"
spec.summary = %q{FluentD output plugin to send messages via rfc5424}
spec.description = %q{FluentD output plugin to send messages via Syslog rfc5424.}
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
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"
spec.add_development_dependency "test-unit-rr", "~> 1.0"
spec.add_development_dependency "pry", "~> 0.12"
spec.add_development_dependency "minitest", "~> 5.14"
spec.add_runtime_dependency "fluentd", "~> 1.7"
end