-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfluent-plugin-jsonl_array_splitter.gemspec
More file actions
25 lines (21 loc) · 1.13 KB
/
fluent-plugin-jsonl_array_splitter.gemspec
File metadata and controls
25 lines (21 loc) · 1.13 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-jsonl_array_splitter"
spec.version = File.read("VERSION").strip
spec.authors = ["Oliver Szabo"]
spec.email = ["oleewere@gmail.com"]
spec.description = %q{Fluentd filter plugin to split JSONL fomatted array text into multiple events}
spec.summary = %q{Fluentd filter plugin to split JSONL fomatted array text into multiple events}
spec.homepage = "https://github.com/oleewere/fluent-plugin-jsonl_array_splitter"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'fluentd', ['>= 0.14.0', '< 2']
spec.add_development_dependency "rake", ["~> 11.0"]
spec.add_development_dependency 'test-unit', '~> 3.3', '>= 3.3.3'
spec.add_development_dependency 'test-unit-rr', '~> 1.0', '>= 1.0.5'
end