class Dwf::Configuration

Constants

NAMESPACE
REDIS_OPTS

Attributes

namespace[RW]
redis_opts[RW]

Public Class Methods

new(hash = {}) click to toggle source
# File lib/dwf/configuration.rb, line 10
def initialize(hash = {})
  @namespace = hash.fetch(:namespace, NAMESPACE)
  @redis_opts = hash.fetch(:redis_opts, REDIS_OPTS)
end