Sha256: dc4a5568b2f700864b07743410fd5ce1f8d4aecdfeb276b4ac0a152ccbc5488b
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
# 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-mixin-type-converter" spec.version = "0.1.0" spec.authors = ["Kentaro Yoshida"] spec.email = ["y.ken.studio@gmail.com"] spec.summary = %q{Fluentd mixin plugin to provides type conversion function as like as in_tail plugin. It acts calling Fluent::TextParser::TypeConverter as mixin. It will let you get easy to implement type conversion for your own plugins.} spec.homepage = "https://github.com/y-ken/fluent-mixin-type-converter" spec.license = "Apache License, Version 2.0" 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_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "test-unit", ">= 3.1.0" spec.add_development_dependency "fluent-mixin-rewrite-tag-name" spec.add_runtime_dependency "fluentd" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-mixin-type-converter-0.1.0 | fluent-mixin-type-converter.gemspec |