forked from Shell32-Natsu/fluent-plugin-azuretables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluent-plugin-azure-table.gemspec
24 lines (21 loc) · 1.01 KB
/
fluent-plugin-azure-table.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-azure-table"
spec.version = "0.0.2 "
spec.authors = ["Vikram"]
spec.email = ["[email protected]"]
spec.summary = "Fluentd plugin for Azure Tables Storage."
spec.description = "Fluentd plugin to add event record into Azure Tables Storage"
spec.homepage = "https://github.com/VikramNisarga/fluent-plugin-azuretables"
spec.licenses = ["MIT"]
spec.has_rdoc = false
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "fluentd", '>= 0.14.10'
spec.add_dependency "azure-storage-table", '~> 2.0'
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 12.0"
end