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.
Source Code
# File initializer.rb, line 524 def database_configuration YAML::load(ERB.new(IO.read(database_configuration_file)).result) end
<code/>and<pre/>for code samples.