I have a Rails (5.1.3) app that uses Savon (2.11.0) for communicating with a 3rd party service. This service requested me recently that in order to use it, I need to make all my requests with TLS 1.2.
How do I do that - do I have to set up something globally in my Rails app or only to pass some parameters to the Savon call?
I tried doing it this way:
Savon.client(wsdl: url, ssl_version: :TLSv1) # or using :TLSv1_2
(found it here) but this doesn't seem to work.
What's the best practice to set TLS to be used for a Rails 5 app?