module Estated

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/estated.rb, line 7
def self.config
  @config ||= Config.new
end
config=(config) click to toggle source
# File lib/estated.rb, line 11
def self.config=(config)
  @config = config
end
configure() { |config| ... } click to toggle source
# File lib/estated.rb, line 15
def self.configure
  yield(config)
end
root() click to toggle source
# File lib/estated.rb, line 19
def self.root
  File.expand_path('../..', __FILE__)
end