Sha256: 2e00553e3ffc2d0f89706af7e1c4ffe5e2611de719cf5a3e2317026fdf8ae1f2
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |gem| gem.name = 'fluent-plugin-multiline-extended' gem.version = ENV.key?('RUBYGEM_VERSION') ? ENV['RUBYGEM_VERSION'] : '1.0.3' gem.authors = ['Alex Yamauchi'] gem.email = ['alex.yamauchi@hotschedules.com'] gem.licenses = [ 'Apache-2.0'] gem.description = 'Extend tail and parser plugins to support logs with separators beyond just a single-line regex to match the first line.' gem.summary = 'Fluent plugin extending the multiline parser' gem.homepage = 'https://github.com/bodhi-space/fluent-plugin-multiline-extended' gem.files = `git ls-files`.split($/) gem.files.reject! { |fn| fn.include? 'doc/' } gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ['lib'] gem.add_runtime_dependency 'fluentd' gem.signing_key = File.expand_path( ENV.key?('RUBYGEM_SIGNING_KEY') ? ENV['RUBYGEM_SIGNING_KEY'] : '~/certs/oss@hotschedules.com.key' ) if $0 =~ /\bgem[\.0-9]*\z/ gem.cert_chain = %w[certs/oss@hotschedules.com.cert] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-multiline-extended-1.0.3 | fluent-plugin-multiline-extended.gemspec |