Ruby 使用 Net::Ping 连接到指定的 TCP/UDP 端口

require 'rubygems'
require 'net/ping'

if Net::PingTCP.new('http://www.google.com/', 80).ping
  puts "Pong!"
else
  puts "No response"
end

编程技巧