= private = protected
database_configuration()
Loads and returns the contents of the #database_configuration_file. The contents of the file are processed via ERB before being sent through YAML::load.
# File railties/lib/initializer.rb, line 880 def database_configuration require 'erb' YAML::load(ERB.new(IO.read(database_configuration_file)).result) end