Sha256: c569eb02a34dfe409ccb01862e24e9684cc4762bd5e076c5f47c8d46c9674ec2
Contents?: true
Size: 982 Bytes
Versions: 1
Compression:
Stored size: 982 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'fluent-plugin-conditional-tag-rewrite' spec.version = '0.1.0' spec.authors = ['Christian Schulz'] spec.email = ['trutty3@gmail.com'] spec.summary = 'Conditional Tag Rewrite is designed to re-emit records with a different tag. Multiple AND-conditions can be defined; if a set of AND-conditions match, the records will be re-emitted with the specified tag.' spec.homepage = 'https://github.com/trutty/luent-plugin-conditional-tag-rewrite' spec.license = 'MIT' spec.files = `git ls-files`.split("\n") spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 2.2.2' spec.add_development_dependency 'rake', '~> 12.0' spec.add_development_dependency 'test-unit', '~> 3.0' spec.add_runtime_dependency 'fluentd', ['>= 0.14.10', '< 2'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-conditional-tag-rewrite-0.1.0 | fluent-plugin-conditional-tag-rewrite.gemspec |