I know that I can use the #use_ssl = false to disable the use of ssl for an instance of the net::http, but is there a class method I can set at the beginning of my code so that from that point onward, any new instances of net::http will have ssl switched off?
Share
Why not just make a helper method?
You could also monkey patch the Net::HTTP class”