29 строки
1.1 KiB
Ruby
29 строки
1.1 KiB
Ruby
lib = File.expand_path("../lib", __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "fluent-plugin-mdm"
|
|
spec.version = "0.1.0"
|
|
spec.authors = ["HANA RP Devs"]
|
|
spec.email = ["hanarpdevs@microsoft.com"]
|
|
|
|
spec.description = "An output plugin to send metrics to MDM using the statsd interface"
|
|
spec.summary = spec.description
|
|
spec.name = "fluent-plugin-mdm"
|
|
spec.homepage = "https://github.com/Azure/fluent-plugin-mdm"
|
|
spec.license = "MIT"
|
|
|
|
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
|
|
f.match(%r{^(test|spec|features)/})
|
|
end
|
|
spec.files = `git ls-files`.split("\n")
|
|
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
spec.test_files = test_files
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.add_development_dependency "bundler", ">= 2.2.10"
|
|
spec.add_development_dependency "rake", "~> 12.0"
|
|
spec.add_development_dependency "test-unit", "~> 3.0"
|
|
spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
|
|
end
|