This is how I parse the YAML into my applications:
require 'yaml' class ApplicationController < ActionController::Base before_filter :configure_app # Your code here... def configure_app @config = YAML::load(File.open("#{RAILS_ROOT}/config/config.yml")) end end