Sha256: 60ffa8a5d81c15d74e4d0f70f3d189e397b261a496008682164d053153754aa9
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "fluent-plugin-aurora-slowquerylog" spec.version = "0.0.2" spec.authors = ["Takayuki WATANABE"] spec.email = ["takanabe.w@gmail.com"] spec.summary = "A fluentd plugin that collects AWS Aurora slow query logs with `log_output=FILE`" spec.description = "A fluentd plugin that collects AWS Aurora slow query logs with `log_output=FILE`" spec.homepage = "https://github.com/takanabe/fluent-plugin-aurora-slowquerylog" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "fluentd" spec.add_runtime_dependency "aws-sdk", '~> 2' spec.add_runtime_dependency "myslog" spec.add_runtime_dependency "activesupport" spec.add_development_dependency "test-unit", ">= 3.0.0" spec.add_development_dependency "pry-byebug" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-aurora-slowquerylog-0.0.2 | fluent-plugin-aurora-slowquerylog.gemspec |