Sha256: a6764e2d35d0f4f771a3e521b3492fafea4f734b45b8858b3c5d1ca5bcecc053
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'host_status/version' Gem::Specification.new do |spec| spec.name = 'host_status' spec.version = HostStatus::VERSION spec.authors = ['Konstantin Gredeskoul'] spec.email = %w(kigster@gmail.com) spec.summary = %q{A generalized interface for obtaining a status of an application running on a given host, intended to be used in Canary Deploys. Supports any number of backend adapters such as NewRelic.} spec.description = %q{A generalized facade that aggregates metrics for a given host running a particular application using any number of adapters and plugins including third-party APIs.} spec.homepage = 'https://github.com/kigster/host_status' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'dry-configurable' spec.add_dependency 'dry-types' spec.add_dependency 'dry-struct' spec.add_dependency 'activesupport', '> 3' spec.add_dependency 'hashie' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rspec-its' spec.add_development_dependency 'awesome_print' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
host_status-0.1.0 | host_status.gemspec |