I found recently that I wanted to get SSL enabled when making HTTP connections with Ruby. However, if you’re wishing to talk to servers that have certificates signed by commercial certificate authorities then you won’t be able to verify them when you make a connection: require ‘net/http’ require ‘net/https’ http = Net::HTTP.new(‘www.google.com’, 443) http.use_ssl = [...]