This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NodeAT14 < Formula | |
desc "Platform built on V8 to build network applications" | |
homepage "https://nodejs.org/" | |
url "https://nodejs.org/dist/v14.21.3/node-v14.21.3.tar.xz" | |
sha256 "458ec092e60ad700ddcf079cb63d435c15da4c7bb3d3f99b9a8e58a99e54075e" | |
license "MIT" | |
revision 1 | |
bottle do | |
sha256 cellar: :any, arm64_sonoma: "1148f4bf7fc8f4a6cda00b7dace952ff0c9d22ddb117a3a0f1bafbbc97bac1a6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'net/http' | |
require 'openssl' | |
count = 0 | |
while true do | |
uri = URI.parse('https://citaslegalizaciones.mppre.gob.ve/') | |
status = "" | |
begin | |
puts "Testing...." | |
http = Net::HTTP.new(uri.host, uri.port) | |
http.open_timeout = 15 |