Class: LetsencryptPlugin::ChallengeStore

Inherits:
Object
  • Object
show all
Defined in:
lib/letsencrypt_plugin/challenge_store.rb

Direct Known Subclasses

DatabaseStore, FileStore

Instance Method Summary collapse

Constructor Details

#initialize(challenge_content) ⇒ ChallengeStore

Returns a new instance of ChallengeStore.



3
4
5
# File 'lib/letsencrypt_plugin/challenge_store.rb', line 3

def initialize(challenge_content)
  @content = challenge_content
end

Instance Method Details

#storeObject



7
8
9
10
# File 'lib/letsencrypt_plugin/challenge_store.rb', line 7

def store
  display_info
  store_content
end