Module: Encryptbot

Defined in:
lib/encryptbot.rb,
lib/encryptbot/cert.rb,
lib/encryptbot/slack.rb,
lib/encryptbot/heroku.rb,
lib/encryptbot/version.rb,
lib/encryptbot/exceptions.rb,
lib/encryptbot/services/dyn.rb,
lib/encryptbot/configuration.rb,
lib/encryptbot/services/cloudflare.rb

Defined Under Namespace

Modules: Error, Services Classes: Cert, Configuration, Heroku, Slack

Constant Summary collapse

VERSION =
"0.1.0"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject

Returns the value of attribute configuration.



14
15
16
# File 'lib/encryptbot.rb', line 14

def configuration
  @configuration
end

Class Method Details

.configure {|configuration| ... } ⇒ Object

Yields:



17
18
19
20
# File 'lib/encryptbot.rb', line 17

def self.configure
  self.configuration ||= Configuration.new
  yield(configuration) if block_given?
end