forked from fluent-plugins-nursery/fluent-plugin-systemd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-systemd.gemspec
28 lines (22 loc) · 1.05 KB
/
fluent-plugin-systemd.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
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-systemd'
spec.version = '1.0.2'
spec.authors = ['Ed Robinson']
spec.email = ['[email protected]']
spec.summary = 'Input plugin to read from systemd journal.'
spec.description = 'This is a fluentd input plugin. It reads logs from the systemd journal.'
spec.homepage = 'https://github.com/reevoo/fluent-plugin-systemd'
spec.license = 'Apache-2.0'
spec.files = Dir['lib/**/**.rb', 'README.md', 'LICENCE']
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '> 1.10'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'test-unit', '~> 2.5'
spec.add_development_dependency 'rubocop', '~> 0.53.0'
spec.add_runtime_dependency 'fluentd', ['>= 0.14.11', '< 2']
spec.add_runtime_dependency 'systemd-journal', '~> 1.3.2'
end