# File lib/tcp_socket_extension.rb, line 14 def self.listening_service?(options) Timeout::timeout(options[:timeout] || 20) do begin socket = TCPSocket.new(options[:host], options[:port]) socket.close unless socket.nil? true rescue Errno::ECONNREFUSED, Errno::EBADF # Windows false end end end
# File lib/tcp_socket_extension.rb, line 27 def self.verbose_wait puts ".\n" sleep 2 end
Generated with the Darkfish Rdoc Generator 2.