This repository has been archived by the owner on Sep 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
xcflushd.gemspec
43 lines (36 loc) · 1.9 KB
/
xcflushd.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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