Sha256: d9a4415bab7350b77b8bfafc6c6e5bb65eb67db16b96bf6ddcefdb3262910edb
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = "fluent-plugin-burrow" s.description = "Extract a single key (in formats Fluent can natively understand) from an event and re-emit a new event that replaces the entire original record with that key's values." s.version = "1.2" s.license = "MIT" s.authors = ["Tim Gunter"] s.email = ["tim@vanillaforums.com"] s.homepage = "https://github.com/vanilla/fluent-plugin-burrow" s.summary = %q{Fluentd output filter plugin. Extract a single key (in formats Fluent can natively understand) from an event and re-emit a new event that replaces the entire original record with that key's values.} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency "rake" s.add_runtime_dependency "fluentd" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-burrow-1.2 | fluent-plugin-burrow.gemspec |