Sha256: 16ba5620537c5fc6cf083299ab01f7bd55bcd7f8aeb1c75a2f5d691df378620f
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 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 = %q{Daemon for flushing XC reports to 3scale.} 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.10.0" spec.add_runtime_dependency "gli", "= 2.14.0" spec.add_runtime_dependency "redis", "= 3.3.1" spec.add_runtime_dependency "hiredis", "= 0.6.1" spec.add_runtime_dependency "concurrent-ruby", "1.0.2" spec.add_runtime_dependency "net-http-persistent", "2.9.4" spec.add_runtime_dependency "daemons", "= 1.2.4" spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 11.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "fakeredis", "~> 0.6.0" spec.add_development_dependency "simplecov", "~> 0.12.0" spec.add_development_dependency "rubocop", "~> 0.46.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xcflushd-1.0.0.rc2 | xcflushd.gemspec |