forked from tagomoris/fluent-plugin-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-mysql.gemspec
23 lines (21 loc) · 1.01 KB
/
fluent-plugin-mysql.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-mysql"
gem.version = "0.3.0"
gem.authors = ["TAGOMORI Satoshi", "Toyama Hiroshi"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{fluent plugin to insert mysql as json(single column) or insert statement}
gem.summary = %q{fluent plugin to insert mysql}
gem.homepage = "https://github.com/tagomoris/fluent-plugin-mysql"
gem.license = "Apache-2.0"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency "fluentd", ['>= 0.14.8', '< 2']
gem.add_runtime_dependency "mysql2-cs-bind"
gem.add_runtime_dependency "jsonpath"
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit"
gem.add_development_dependency "timecop", "~> 0.8.0"
end