-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathlogstash-filter-cache-redis.gemspec
More file actions
25 lines (22 loc) · 1.24 KB
/
Copy pathlogstash-filter-cache-redis.gemspec
File metadata and controls
25 lines (22 loc) · 1.24 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
Gem::Specification.new do |s|
s.name = 'logstash-filter-cache-redis'
s.version = '0.3.3'
s.licenses = ['MIT']
s.summary = "Redis Cache Filter for Logstash"
s.description = "A Logstash filter plugin for storing and retrieving data from redis cache. This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gem_name. This gem is not a stand-alone program."
s.authors = ["David Robakowski"]
s.email = 'david.robakowski@synlay.com'
s.homepage = "https://github.com/synlay/logstash-filter-cache-redis"
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" => "filter" }
# Gem dependencies
s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
s.add_runtime_dependency 'redis', '~> 3.3', '>= 3.3.3'
s.add_runtime_dependency 'redlock', '~> 0.2', '>= 0.2.0'
s.add_development_dependency 'logstash-devutils', '~> 0'
end