Kurt,
Not sure if this is blessed or not, but I just do:
configure do
load_config "./config.yml"
end
def load_config(file)
if File.exist?(file)
yaml = YAML.load_file(file)
ENV['SOMETHING'] = yaml['something']
end
end
If there is a better way, I'd love to hear.
-damon