class LetsencryptPlugin::ChallengeStore

Public Class Methods

new(challenge_content) click to toggle source
# File lib/letsencrypt_plugin/challenge_store.rb, line 3
def initialize(challenge_content)
  @content = challenge_content
end

Public Instance Methods

store() click to toggle source
# File lib/letsencrypt_plugin/challenge_store.rb, line 7
def store
  display_info
  store_content
end

Protected Instance Methods

display_info() click to toggle source
# File lib/letsencrypt_plugin/challenge_store.rb, line 14
def display_info
  Rails.logger.info('Storing challenge information...')
end