Sha256: ec32751c58afd8e15de7fe146cc62cfe8b5b0cd8521c2061a2e5fb0aff3b25f7
Contents?: true
Size: 417 Bytes
Versions: 9
Compression:
Stored size: 417 Bytes
Contents
require "digicert/configuration" module Digicert module Config def configure if block_given? yield configuration end end def configuration @configuration ||= Configuration.new end end # Expose config module methods as class level method, # so we can use those method whenever necessary, specially # the `configuration` throughout the gem # extend Config end
Version data entries
9 entries across 9 versions & 1 rubygems