Sha256: c0028187d2aa68e1025ba4830922c63cc061164ee782a9e86e670258220e09bf
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'fluent-plugin-gelf-best/version' Gem::Specification.new do |spec| spec.name = "fluent-plugin-gelf-best-test" spec.version = FluentPluginGelfBest::VERSION spec.authors = ["Alex Yamauchi", "Eric Searcy", "Bartosz Michaliewicz"] spec.licenses = ["Apache-2.0"] spec.email = ["bartosz.michalkiewicz@outlook.com"] spec.summary = "Sends Fluentd events Graylog2 by GELF" spec.homepage = "https://github.com/bmichalkiewicz/fluent-plugin-gelf-best" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "fluentd", ">=1.0.0" spec.add_runtime_dependency "gelf", ">= 3.1.0" spec.add_development_dependency "test-unit" spec.add_development_dependency "rake" end
Version data entries
3 entries across 3 versions & 1 rubygems