-
Notifications
You must be signed in to change notification settings - Fork 7
/
elbping.gemspec
23 lines (20 loc) · 1.05 KB
/
elbping.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'elbping'
s.version = '0.3'
s.date = '2013-08-13'
s.summary = "Small tool to 'ping' the nodes that make up an Amazon Elastic Load Balancer"
s.description = "elbping is a tool to ping all of the nodes behind an Amazon Elastic Load Balancer. It only works for ELBs in HTTP mode and works by triggering an HTTP 405 (METHOD NOT ALLOWED) error caused when the ELB receives a HTTP verb that is too long."
s.authors = ["Heroku", "Charles Hooper"]
s.email = '[email protected]'
s.homepage = 'https://github.com/heroku/elbping'
s.license = 'MIT'
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency "rake", "~> 10.0.4"
s.add_development_dependency "test-unit"
s.homepage =
'https://github.com/heroku/elbping'
s.license = 'MIT'
end