Sha256: 723f0908880bc80ab3af974a73fffb8b04fc0751dc0cea17829e20d9619da86c
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'soa_doctor/version' Gem::Specification.new do |spec| spec.name = "soa_doctor" spec.version = SoaDoctor::VERSION spec.authors = ["fillman"] spec.email = ["fila.luka@gmail.com"] spec.description = %q{A small tool to ping your services} spec.summary = %q{Imagine you have a tons of services running somewhere on heroku or else where. And clap! One got down, you try to find which and its a time consuming thing. This tool will register your apps and ping them any time you like } spec.homepage = "https://github.com/fillman/soa_doctor" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "escort" spec.add_dependency "terminal-table" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "webmock" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
soa_doctor-0.0.3 | soa_doctor.gemspec |
soa_doctor-0.0.2 | soa_doctor.gemspec |