Turn Off SSL Verification In Ruby  
  
    The following code will disable SSL verification when using Open SSL.
	OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
It is probably not a good idea to do this in production. But if you are just testing on your development
machine it might...  
  
    
      Written by Sean Behan on 03/02/2017