Sha256: c376818c0fc62308d7accbadc3cf1fbdf0b0163ae25ba054d94f4ceafbada2f5
Contents?: true
Size: 565 Bytes
Versions: 32
Compression:
Stored size: 565 Bytes
Contents
require_relative '../../puppet/ssl' module Puppet::SSL # The `keyword_init: true` option is no longer needed in Ruby >= 3.2 SSLContext = Struct.new( :store, :cacerts, :crls, :private_key, :client_cert, :client_chain, :revocation, :verify_peer, keyword_init: true ) do def initialize(*) super self[:cacerts] ||= [] self[:crls] ||= [] self[:client_chain] ||= [] self[:revocation] = true if self[:revocation].nil? self[:verify_peer] = true if self[:verify_peer].nil? end end end
Version data entries
32 entries across 32 versions & 1 rubygems