-
Notifications
You must be signed in to change notification settings - Fork 0
/
kingkong.gemspec
30 lines (26 loc) · 1.34 KB
/
kingkong.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "kingkong/version"
Gem::Specification.new do |s|
s.name = "kingkong"
s.version = KingKong::VERSION
s.authors = ["Brad Gessler"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Build complex network application health checks with Ruby and EventMachine}
s.description = %q{Have you ever wanted to shoot a message throught Twitter, have your app pick it up, do some work on it, and report how long it takes? KingKong makes it slightly easier to do this with a DSL for writing custom pings and by providing basic reporting facilities that plug into graphing applications like Munin.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'rspec'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'growl'
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'em-ventually'
s.add_development_dependency 'timecop'
s.add_runtime_dependency "eventmachine"
s.add_runtime_dependency "nosey"
s.add_runtime_dependency "yajl-ruby"
s.add_runtime_dependency "em-http-request"
end