diff options
author | Saku Ytti <saku@ytti.fi> | 2014-04-14 16:28:23 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2014-04-14 16:28:23 +0300 |
commit | 57a8f4bc04b4f87ad0d7028dcbf29b96d49eaffd (patch) | |
tree | 82567c791b0114e62fa3b978eb2bb95733d6488b /lib/oxidized/config/core.rb | |
parent | 1a1794b2b3ac99764852546c550fd7988f84c37b (diff) |
Use 'asetus' for configuration files
Main benefits
a) we get support for system wide configs
b) we don't use symbols in config file, they're confusing to
non-rubyist
Diffstat (limited to 'lib/oxidized/config/core.rb')
-rw-r--r-- | lib/oxidized/config/core.rb | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/oxidized/config/core.rb b/lib/oxidized/config/core.rb deleted file mode 100644 index 59ada3a..0000000 --- a/lib/oxidized/config/core.rb +++ /dev/null @@ -1,33 +0,0 @@ -module Oxidized - require 'ostruct' - require 'yaml' - class Config < OpenStruct - require 'oxidized/config/defaults' - # @param file [string] configuration file location - def initialize file=File.join(Config::Root, 'config') - super() - @file = file.to_s - end - # load config from file or bootstrap with built-ins - def load - if File.exists? @file - cfg = YAML.load_file @file - marshal_load marshal_dump.merge(cfg) - else - save - end - end - def defaults - require 'oxidized/config/bootstrap' - end - # save config to file - def save - File.write @file, YAML.dump(marshal_dump) - end - end - CFG = Config.new - CFG.defaults - CFG.load - Log.level = Logger::INFO unless CFG.debug - Log.file = CFG.log if CFG.log -end |