Sha256: 55066501a8087c5fb3167954c500efba9184681d7736fc8ff4b72fedb0a159de
Contents?: true
Size: 1.63 KB
Versions: 4
Compression:
Stored size: 1.63 KB
Contents
# Asetus Configuration library for ruby with YAML/JSON backends with unified object access ## Install ``` % gem install asetus ``` ## Use ### Simple ``` require 'asetus' cfg = Asetus.cfg port = cfg.server.port user = cfg.auth.user pw = cfg.auth.password ``` It tried to detect your software name via caller_locations if no ':name' argument was given. It automatically loads /etc/name/config and ~/.config/name/config and merges them together. ### Advanced ``` require 'asetus' asetus = Asetus.new name: 'mykewlapp', default: {'poop'=>'xyzzy'}, adapter: 'yaml', usrdir: '/home/app/config/', sysdir: '/System/config/', load: false asetus.default.poop2 = [1, 2, 3, 4] asetus.default.starship.poopoers = 42 asetus.load :user if asetus.user.empty? asetus.user = asetus.default asetus.save :user end asetus.load # load+merges cfg, takes argument :default, :system, :user asetus.cfg # merged default + system + user (merged on load) asetus.default # default only asetus.system # system only asetus.user # user only ``` ## Reserved methods * each - iterate all config keys in current level * has_key?(arg) - check if current level has key arg * [arg] - fetch arg (useful for non-literal retrieval, instead of using #send) * key? - all keys have question mark version reserved, checks if key exists+true (true), exists+false (false), not-exists (nil) + all object class methods ## TODO * should I add feature to raise on unconfigured/unset? * should I always merge to 'cfg' when default/system/config is set?
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
asetus-0.1.2 | README.md |
asetus-0.1.1 | README.md |
asetus-0.1.0 | README.md |
asetus-0.0.7 | README.md |