-
Notifications
You must be signed in to change notification settings - Fork 12
/
fluent-plugin-mysql-bulk.gemspec
27 lines (24 loc) · 1.14 KB
/
fluent-plugin-mysql-bulk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-mysql-bulk"
gem.version = "0.0.8"
gem.authors = ["Hiroshi Toyama"]
gem.email = ["[email protected]"]
gem.description = %q{fluent plugin mysql bulk insert is high performance and on duplicate key update respond.}
gem.summary = %q{fluent plugin mysql bulk insert is high performance and on duplicate key update respond.}
gem.homepage = "https://github.com/toyama0919/fluent-plugin-mysql-bulk"
gem.licenses = ["MIT"]
gem.has_rdoc = false
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"
gem.add_runtime_dependency "mysql2-cs-bind"
gem.add_development_dependency "bundler", "~> 1.3"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "spork"
gem.add_development_dependency "pry"
gem.add_development_dependency "test-unit", ">= 3.1.0"
end