-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathfluent-plugin-sql.gemspec
More file actions
28 lines (26 loc) · 1.18 KB
/
fluent-plugin-sql.gemspec
File metadata and controls
28 lines (26 loc) · 1.18 KB
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
28
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-sql"
gem.description = "SQL input/output plugin for Fluentd event collector"
gem.homepage = "https://github.com/fluent/fluent-plugin-sql"
gem.summary = gem.description
gem.version = File.read("VERSION").strip
gem.authors = ["Sadayuki Furuhashi"]
gem.email = "frsyuki@gmail.com"
#gem.platform = Gem::Platform::RUBY
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.license = "Apache-2.0"
gem.add_dependency "fluentd", [">= 1.7.0", "< 2"]
gem.add_dependency "ostruct", '~> 0.6'
gem.add_dependency 'activerecord', [">= 6.1", "< 8.2"]
gem.add_dependency 'activerecord-import', "~> 1.0"
gem.add_development_dependency "rake", ">= 0.9.2"
gem.add_development_dependency "test-unit", "> 3.1.0"
gem.add_development_dependency "test-unit-rr"
gem.add_development_dependency "test-unit-notify"
gem.add_development_dependency "pg", '~> 1.0'
end