-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlogstash-input-azure_blob_storage.gemspec
28 lines (25 loc) · 1.5 KB
/
logstash-input-azure_blob_storage.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
Gem::Specification.new do |s|
s.name = 'logstash-input-azure_blob_storage'
s.version = '0.12.10'
s.licenses = ['Apache-2.0']
s.summary = 'This logstash plugin reads and parses data from Azure Storage Blobs.'
s.description = <<-EOF
This gem is a Logstash plugin. It reads and parses data from Azure Storage Blobs. The azure_blob_storage is a reimplementation to replace azureblob from azure-diagnostics-tools/Logstash. It can deal with larger volumes and partial file reads and eliminating a delay when rebuilding the registry. Configuration examples can be found on https://github.com/janmg/logstash-input-azure_blob_storage
EOF
s.homepage = 'https://github.com/janmg/logstash-input-azure_blob_storage'
s.authors = ['Jan Geertsma']
s.email = 'jan@janmg.com'
s.require_paths = ['lib']
# Files
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE']
# Tests
s.test_files = s.files.grep(%r{^(test|spec|features)/})
# Special flag to let us know this is actually a logstash plugin
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
# Gem dependencies
s.add_runtime_dependency 'logstash-core-plugin-api', '~> 2.0'
s.add_runtime_dependency 'stud', '~> 0.0.23'
s.add_runtime_dependency 'azure-storage-blob', '~> 2', '>= 2.0.3'
s.add_development_dependency 'logstash-devutils', '~> 2.4'
s.add_development_dependency 'rubocop', '~> 1.50'
end