class Abbey::Settings

Attributes

logger[RW]
namespaces[RW]
path[RW]

Public Class Methods

new(path, namespaces = [], logger = nil) click to toggle source

@param path [String] Filesystem path to store the data in @param namespaces [Array] Namespaces to create @param logger [Logger]

# File lib/settings.rb, line 10
def initialize(path, namespaces = [], logger = nil)
  @path = path
  @namespaces = namespaces
  @logger = (logger || Logger.new('/dev/null'))
end