Sha256: 9bb93da4c30e8c6ec4b89ce7a3464f218a87740d13b950a2f37fa961e067ddc9

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

Gem::Specification.new do |s|
  s.name = 'logstash-filter-cache-redis'
  s.version         = '0.3.1'
  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'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
logstash-filter-cache-redis-0.3.1 logstash-filter-cache-redis.gemspec