This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

ssl_version=

        # OpenSSL::SSL::SSLContext.ssl_version=

(from ruby core)
### Implementation from SSLContext
---
    ctx.ssl_version = :TLSv1
    ctx.ssl_version = "SSLv23"

---

Sets the SSL/TLS protocol version for the context. This forces
connections to use only the specified protocol version. This is
deprecated and only provided for backwards compatibility. Use
#min_version= and #max_version= instead.

### History
As the name hints, this used to call the SSL_CTX_set_ssl_version()
function which sets the SSL method used for connections created from the
context. As of Ruby/OpenSSL 2.1, this accessor method is implemented to
call #min_version= and #max_version= instead.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.