-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathfluent-plugin-systemd.gemspec
More file actions
32 lines (25 loc) · 1.32 KB
/
fluent-plugin-systemd.gemspec
File metadata and controls
32 lines (25 loc) · 1.32 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
25
26
27
28
29
30
31
32
# -*- 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.1.1'
spec.authors = ['Ed Robinson']
spec.email = ['edward-robinson@cookpad.com']
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/fluent-plugins-nursery/fluent-plugin-systemd'
spec.license = 'Apache-2.0'
spec.files = Dir['lib/**/**.rb', 'README.md', 'LICENCE']
spec.require_paths = ['lib']
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/fluent-plugins-nursery/fluent-plugin-systemd'
spec.metadata['bug_tracker_uri'] = 'https://github.com/fluent-plugins-nursery/fluent-plugin-systemd/issues'
spec.add_development_dependency 'bundler', '> 1.10'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'test-unit', '~> 3.4'
spec.add_development_dependency 'rubocop', '1.13.0'
spec.add_runtime_dependency 'fluentd', ['>= 0.14.11', '< 2']
spec.add_runtime_dependency 'systemd-journal', '~> 2.1.0'
end