Sha256: a71b5f947844533a85973492e03106a17a12a552091688c06e3118334e975209
Contents?: true
Size: 596 Bytes
Versions: 32
Compression:
Stored size: 596 Bytes
Contents
# frozen_string_literal: true 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