-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfluent-plugin-record_splitter.gemspec
More file actions
25 lines (22 loc) · 1018 Bytes
/
fluent-plugin-record_splitter.gemspec
File metadata and controls
25 lines (22 loc) · 1018 Bytes
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
# encoding: utf-8
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'fluent-plugin-record_splitter'
gem.description = 'output split array plugin for fluentd'
gem.homepage = 'https://github.com/ixixi/fluent-plugin-record_splitter'
gem.summary = gem.description
gem.version = File.read('VERSION').strip
gem.authors = ['Yuri Odagiri']
gem.email = 'ixixizko@gmail.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.14.0', '< 2']
gem.add_dependency 'fluent-mixin-config-placeholders', '>= 0.3.0'
gem.add_dependency 'fluent-mixin-rewrite-tag-name'
gem.add_development_dependency 'rake', '>= 0.9.2'
gem.add_development_dependency 'test-unit'
end