Is there a way to force SSL version on a single RestClient connection?
I need to set it to 'SSLv3'.
I'm able to do that for ALL connections using:
OpenSSL::SSL::SSLContext::DEFAULT_PARAMS[:ssl_version] = 'SSLv3'
But that of course is too global.
When trying to pass parameters in the initialization, it doesn't work:
RestClient::Resource.new('https://example.com',:ssl_version => "SSLv3")