class Acmesmith::PostIssuingHooks::Base
Attributes
certificate[R]
Public Instance Methods
common_name()
click to toggle source
# File lib/acmesmith/post_issuing_hooks/base.rb, line 6 def common_name certificate.common_name end
execute()
click to toggle source
# File lib/acmesmith/post_issuing_hooks/base.rb, line 15 def execute raise NotImplementedError end
run(certificate:)
click to toggle source
# File lib/acmesmith/post_issuing_hooks/base.rb, line 10 def run(certificate:) @certificate = certificate execute end