Module: Encryptbot

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

Defined Under Namespace

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

Constant Summary collapse

VERSION =
"0.1.5"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject

Returns the value of attribute configuration.



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

def configuration
  @configuration
end

Class Method Details

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

Yields:



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

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