forked from docebo/fluent-plugin-remote-syslog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfluent-plugin-remote-syslog.gemspec
More file actions
23 lines (21 loc) · 934 Bytes
/
fluent-plugin-remote-syslog.gemspec
File metadata and controls
23 lines (21 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-remote-syslog"
gem.description = "Output plugin for streaming logs out to a remote syslog"
gem.homepage = "https://github.com/docebo/fluent-plugin-remote-syslog"
gem.summary = gem.description
gem.version = "1.0"
gem.authors = ["Andrea Spoldi"]
gem.email = "devops@docebo.com"
gem.has_rdoc = false
gem.license = 'MIT'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency "fluentd", "~> 0.10.45"
gem.add_dependency "fluent-mixin-config-placeholders", "~> 0.2.0"
gem.add_dependency "syslog_protocol"
gem.add_development_dependency "rake", ">= 0.9.2"
end