module Magiq

Constants

DEFAULT_CONFIG
VERSION

Public Instance Methods

[](key) click to toggle source
# File lib/magiq.rb, line 18
def [](key)
  config[key]
end
config() click to toggle source
# File lib/magiq.rb, line 22
def config
  @config ||= DEFAULT_CONFIG.dup
end
configure() { |config| ... } click to toggle source
# File lib/magiq.rb, line 26
def configure
  yield(config)
end