Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fluent-plugin-mysql / fluent-plugin-mysql.gemspec
Size: Mime:
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
  gem.name          = "fluent-plugin-mysql"
  gem.version       = "0.3.6.1"
  gem.authors       = ["TAGOMORI Satoshi", "Toyama Hiroshi"]
  gem.email         = ["tagomoris@gmail.com", "toyama0919@gmail.com"]
  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.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
  gem.required_rubygems_version = Gem::Requirement.new(">= 2")

  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_runtime_dependency "oj"
  gem.add_development_dependency "rake"
  gem.add_development_dependency "test-unit"
  gem.add_development_dependency "timecop", "~> 0.8.0"
end