forked from htgc/fluent-plugin-azurestorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-azurestorage.gemspec
26 lines (24 loc) · 1.1 KB
/
fluent-plugin-azurestorage.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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-azurestorage"
gem.description = "Azure Storage output plugin for Fluentd event collector"
gem.license = "Apache-2.0"
gem.homepage = "https://github.com/htgc/fluent-plugin-azurestorage"
gem.summary = gem.description
gem.version = File.read("VERSION").strip
gem.authors = ["Hidemasa Togashi"]
gem.email = ["[email protected]"]
#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.add_dependency "fluentd", "1.2.6"
gem.add_dependency "azure-storage-common", "1.1.0"
gem.add_dependency "azure-storage-blob", "1.1.0"
gem.add_dependency "uuidtools", "2.1.5"
gem.add_development_dependency "rake", "12.3.1"
gem.add_development_dependency "test-unit", "3.2.8"
gem.add_development_dependency "test-unit-rr", "1.0.5"
end