-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfluent-plugin-documentdb.gemspec
More file actions
25 lines (22 loc) · 1.03 KB
/
fluent-plugin-documentdb.gemspec
File metadata and controls
25 lines (22 loc) · 1.03 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-documentdb"
gem.version = File.read("VERSION").strip
gem.authors = ["Yoichi Kawasaki"]
gem.email = ["yoichi.kawasaki@outlook.com"]
gem.summary = %q{Azure DocumentDB output plugin for Fluentd}
gem.description = gem.summary
gem.homepage = "http://github.com/yokawasa/fluent-plugin-documentdb"
gem.license = "Apache-2.0"
gem.files = `git ls-files`.split("\n")
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
#gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|gem|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "fluentd", [">= 0.14.15", "< 2"]
gem.add_dependency "rest-client"
gem.add_development_dependency "rake", ">= 12.3.3"
gem.add_development_dependency "test-unit"
end