Sha256: d3728716beba17d59fd4412ff0b41d21c3c488a5f54256798e2adb8a6e10707f
Contents?: true
Size: 960 Bytes
Versions: 1
Compression:
Stored size: 960 Bytes
Contents
# -*- encoding: utf-8 -*- # $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |spec| spec.name = "fluent-plugin-sql_fingerprint" spec.version = "0.0.1" spec.authors = ["Takahiro Kikumoto"] spec.email = ["kikumoto.takahiro@hamee.co.jp"] spec.summary = "A Fluent filter plugin to convert sql to sql's fingerprint" spec.description = spec.summary spec.homepage = "https://github.com/kikumoto/fluent-plugin-sql_fingerprint" spec.license = "MIT" spec.files = `git ls-files`.split("\n") spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "fluentd", ">= 0.12" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "test-unit" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-sql_fingerprint-0.0.1 | fluent-plugin-sql_fingerprint.gemspec |