Method: IsItWorking::PingCheck#ping
- Defined in:
- lib/is_it_working/checks/ping_check.rb
#ping(host, port) ⇒ Object
45 46 47 48 49 50 51 |
# File 'lib/is_it_working/checks/ping_check.rb', line 45 def ping(host, port) timeout(@timeout) do s = TCPSocket.new(host, port) s.close end true end |