Sha256: 1375f9ddfb424b3b3667068bdde896bc648feaf0d2a2512fc7d61ca7a0399c77

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 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       = '1.0.1'
  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('~/certs/oss@hotschedules.com.key') if $0 =~ /gem\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.1 fluent-plugin-multiline-extended.gemspec