Module: LetsencryptPlugin

Defined in:
lib/letsencrypt_plugin.rb,
lib/letsencrypt_plugin/engine.rb,
lib/letsencrypt_plugin/version.rb,
lib/letsencrypt_plugin/file_store.rb,
lib/letsencrypt_plugin/file_output.rb,
lib/letsencrypt_plugin/configuration.rb,
lib/letsencrypt_plugin/heroku_output.rb,
app/models/letsencrypt_plugin/setting.rb,
lib/letsencrypt_plugin/database_store.rb,
lib/letsencrypt_plugin/challenge_store.rb,
app/models/letsencrypt_plugin/challenge.rb,
lib/letsencrypt_plugin/certificate_output.rb,
app/controllers/letsencrypt_plugin/application_controller.rb

Defined Under Namespace

Modules: Configuration Classes: ApplicationController, CertGenerator, CertificateOutput, Challenge, ChallengeStore, DatabaseStore, Engine, FileOutput, FileStore, HerokuOutput, Setting

Constant Summary collapse

VERSION =
'0.0.12'.freeze
Config =
Class.new(OpenStruct)

Class Method Summary collapse

Class Method Details

.configObject



11
12
13
14
# File 'lib/letsencrypt_plugin.rb', line 11

def self.config
  # load files on demand
  @config ||= Configuration.load_file
end

.config=(config) ⇒ Object



16
17
18
# File 'lib/letsencrypt_plugin.rb', line 16

def self.config=(config)
  @config = config
end