I am loading a YAML file in Rails 3.0.9 like this:
APP_CONFIG = YAML.load(File.read(File.expand_path(\'../app.yml\', __FILE__)))
It loads the a
This is the same from the selected answer, but with a better syntax:
YAML.load(File.read(file_path)).with_indifferent_access