-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathicmp4em.gemspec
22 lines (22 loc) · 934 Bytes
/
icmp4em.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = "icmp4em"
s.version = "0.0.2"
s.date = "2009-04-3"
s.authors = ["Jake Douglas"]
s.email = "[email protected]"
s.rubyforge_project = "icmp4em"
s.has_rdoc = true
s.summary = "Asynchronous implementation of ICMP ping using EventMachine"
s.homepage = "http://www.github.com/yakischloba/icmp4em"
s.description = "Asynchronous implementation of ICMP ping using EventMachine. Can be used to ping many hosts
at once in a non-blocking fashion, with callbacks for success, timeout, and host failure/recovery
based on specified threshold numbers."
s.files = ["README",
"examples/simple_example.rb",
"examples/stateful_example.rb",
"lib/icmp4em.rb",
"lib/icmp4em/common.rb",
"lib/icmp4em/handler.rb",
"lib/icmp4em/icmpv4.rb"]
s.add_dependency('eventmachine')
end