Sha256: 965305b2d6bf342c456a7fb04f06e71c7445e8072dae988253fc34d5ee719ea7
Contents?: true
Size: 1006 Bytes
Versions: 1
Compression:
Stored size: 1006 Bytes
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-num-comparison" spec.version = "0.1.0" spec.authors = ["homirun"] spec.email = ["me@homi.run"] spec.summary = %q{This plugin that compares thresholds and extracts only the larger or smaller ones.} spec.description = spec.summary spec.homepage = "https://github.com/homirun/fluent-plugin-num-comparison" spec.license = "MIT" test_files, files = `git ls-files -z`.split("\x0").partition do |f| f.match(%r{^(test|spec|features)/}) end spec.files = files spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = test_files spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "test-unit" spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-num-comparison-0.1.0 | fluent-plugin-num-comparison.gemspec |