-
Notifications
You must be signed in to change notification settings - Fork 6
/
fluent-plugin-azure-storage-append-blob-lts.gemspec
29 lines (25 loc) · 1.23 KB
/
fluent-plugin-azure-storage-append-blob-lts.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
27
28
29
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-azure-storage-append-blob-lts'
spec.version = '0.7.0'
spec.authors = ['Jonas-Taha El Sesiy']
spec.email = ['[email protected]']
spec.summary = 'Azure Storage Append Blob output plugin for Fluentd event collector'
spec.description = 'Fluentd plugin to upload logs to Azure Storage append blobs. Fork of https://github.com/microsoft/fluent-plugin-azure-storage-append-blob'
spec.homepage = 'https://github.com/elsesiy/fluent-plugin-azure-storage-append-blob-lts'
spec.license = 'MIT'
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
f.match(%r{^(test|spec|features)/})
end
spec.files = files
spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = test_files
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.1'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'test-unit', '~> 3.0'
spec.add_runtime_dependency 'azure-storage-blob', '~> 2.0'
spec.add_runtime_dependency 'fluentd', ['>= 0.14.10', '< 2']
end