# -*- encoding: utf-8 -*- Gem::Specification.new do |gem| gem.name = "fluent-plugin-multiline-parser" gem.version = "0.1.1" gem.authors = ["Jerry Zhou"] gem.email = ["quicksort@outlook.com"] gem.description = %q{fluentd plugin to parse single field, or to combine log structure into single field, and support multiline format} gem.summary = %q{plugin to parse/combine multiline fluentd log messages} gem.homepage = "https://github.com/quick-sort/fluent-plugin-multiline-parser" gem.license = "Apache-2.0" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency "test-unit" gem.add_development_dependency "rake" gem.add_development_dependency "thread_safe" gem.add_runtime_dependency "fluentd", "~> 0.12.0" end