Sha256: f3470aa7571631761fb2875f9ade7d065fde64ca47aa14353564304c185b5171
Contents?: true
Size: 1.18 KB
Versions: 17
Compression:
Stored size: 1.18 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'watchmonkey_cli/version' Gem::Specification.new do |spec| spec.name = "watchmonkey_cli" spec.version = WatchmonkeyCli::VERSION spec.authors = ["Sven Pachnit"] spec.email = ["sven@bmonkeys.net"] spec.summary = %q{Watchmonkey CLI - dead simple agentless monitoring via SSH, HTTP, FTP, etc.} spec.description = %q{If you want an easy way to monitor services without the need of installing agents let a monkey do the job by polling status information via transport protocols.} spec.homepage = "https://github.com/2called-chaos/watchmonkey_cli" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") 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 "activesupport" spec.add_dependency "httparty" spec.add_dependency "net-ssh" spec.add_development_dependency "pry" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" end
Version data entries
17 entries across 17 versions & 1 rubygems