asciinema.org/config/confstruct.rb

10 lines
335 B
Ruby
Raw Normal View History

2012-02-20 20:52:21 +00:00
app_cfg_file = File.expand_path(File.dirname(__FILE__) + '/app.yml')
cfg_hash = YAML.load_file(app_cfg_file)[Rails.env]
local_cfg_file = File.expand_path(File.dirname(__FILE__) + '/local.yml')
local_hash = YAML.load_file(local_cfg_file)[Rails.env] rescue {}
cfg_hash.merge!(local_hash)
CFG = Confstruct::Configuration.new(cfg_hash)