8 lines
130 B
Ruby
8 lines
130 B
Ruby
module NodeHelper
|
|
require 'net/ping'
|
|
def ping_test?(host)
|
|
check = Net::Ping::External.new(host)
|
|
check.ping?
|
|
end
|
|
end
|