Sha256: 0b2f9c29ff83f6d10b3c3c3f139f6e50ee3ad6f8cdda4f9a208113ffb1db01ca
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "fluent-plugin-jq" spec.version = "0.3.0" spec.authors = ["Zhimin (Gimi) Liang"] spec.email = ["liang.gimi@gmail.com"] spec.summary = %q{Fluentd plugins uses the jq engine.} spec.description = %q{fluent-plungin-jq is a collection of fluentd plugins which uses the jq engine to transform or format fluentd events.} spec.homepage = "https://github.com/Gimi/fluent-plugin-jq" spec.license = "Apache-2.0" spec.files = Dir.glob('*').select { |f| not (File.directory?(f) || f.start_with?('.')) } + Dir.glob('lib/**/**.rb') + Dir.glob('example/**/**') spec.test_files = Dir.glob('test/**/**.rb') spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 12.0" spec.add_development_dependency "test-unit", "~> 3.0" spec.add_development_dependency "coveralls", "~> 0.8" spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"] spec.add_runtime_dependency "ruby-jq", "~> 0.1" spec.add_runtime_dependency "multi_json", "~> 1.13" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-jq-0.3.0 | fluent-plugin-jq.gemspec |