You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/config/cfg.rb

10 lines
315 B
Ruby

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 = cfg_hash.merge(ENV)