Sha256: fd63438755bb320a8fc842b0ad4e107723f0c8e91f89c5367361e6ff0be6bf70
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fluent_plugin_filter_parse_postfix/version' Gem::Specification.new do |spec| spec.name = 'fluent-plugin-filter-parse-postfix' spec.version = FluentPluginFilterParsePostfix::VERSION spec.authors = ['Genki Sugawara'] spec.email = ['sugawara@cookpad.com'] spec.summary = %q{Filter Plugin to parse Postfix status line log.} spec.description = %q{Filter Plugin to parse Postfix status line log.} spec.homepage = 'https://github.com/winebarrel/fluent-plugin-filter-parse-postfix' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'fluentd', '>= 0.12' spec.add_dependency 'postfix_status_line', '>= 0.1.6' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '>= 3.0.0' spec.add_development_dependency 'test-unit', '>= 3.1.0' spec.add_development_dependency 'timecop' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-filter-parse-postfix-0.1.5 | fluent-plugin-filter-parse-postfix.gemspec |