Sha256: ea98fd52520036ecd8ec913dcc2fa0e651e0a49f926dc100b6cf10e3390f97de

Contents?: true

Size: 1.9 KB

Versions: 2

Compression:

Stored size: 1.9 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'xcflushd/version'

Gem::Specification.new do |spec|
  spec.name          = "xcflushd"
  spec.version       = Xcflushd::VERSION
  spec.authors       = ["Alejandro Martinez Ruiz", "David Ortiz Lopez"]
  spec.email         = ["support@3scale.net"]

  spec.summary       = %q{Daemon for flushing XC reports to 3scale.}
  spec.description   = "xcflushd is a daemon that connects to a Redis database " \
                       "containing 3scale's XC API Management data and flushes " \
                       "it to the 3scale service for cached reporting and " \
                       "authorizations. Check https://github.com/3scale/apicast-xc" \
                       " for an implementation of a 3scale's XC gateway."
  spec.homepage      = "https://github.com/3scale/xcflushd"

  spec.license       = "Apache-2.0"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = '>= 2.1.0'

  spec.add_runtime_dependency "3scale_client", "~> 2.11"
  spec.add_runtime_dependency "gli", "~> 2.16.0"
  spec.add_runtime_dependency "redis", "~> 3.3.3"
  spec.add_runtime_dependency "hiredis", "~> 0.6.1"
  spec.add_runtime_dependency "concurrent-ruby", "~> 1.0.5"
  spec.add_runtime_dependency "net-http-persistent", "~> 2.9.4"
  spec.add_runtime_dependency "daemons", "~> 1.2.4"

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 11.0"
  spec.add_development_dependency "rspec", "~> 3.5"
  spec.add_development_dependency "fakeredis", "~> 0.6"
  spec.add_development_dependency "simplecov", "~> 0.14"
  spec.add_development_dependency "rubocop", "~> 0.48"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
xcflushd-1.2.0 xcflushd.gemspec
xcflushd-1.1.0 xcflushd.gemspec