diff options
author | Akira Matsuda <ronnie@dio.jp> | 2014-09-10 19:25:01 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2014-09-10 19:25:01 +0900 |
commit | ed9d220cd1710fcfe74f61a092b8e3b42ed426da (patch) | |
tree | d0e96216dd4334837051594315fdb33a69a11ccf /railties/lib/rails/application | |
parent | 9e1a7398aa533be58647d555a9ba1897bacd7e40 (diff) | |
download | rails-ed9d220cd1710fcfe74f61a092b8e3b42ed426da.tar.gz rails-ed9d220cd1710fcfe74f61a092b8e3b42ed426da.tar.bz2 rails-ed9d220cd1710fcfe74f61a092b8e3b42ed426da.zip |
Tell the user which file is missing when config/database.yml was not found
Since cc03675d30b58e28f585720dad14e947a57ff5b the error message became like
"Could not load database configuration. No such file -"
which doesn't really tell what's actually missing.
Diffstat (limited to 'railties/lib/rails/application')
-rw-r--r-- | railties/lib/rails/application/configuration.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/railties/lib/rails/application/configuration.rb b/railties/lib/rails/application/configuration.rb index 2c16b83f8a..786dcee007 100644 --- a/railties/lib/rails/application/configuration.rb +++ b/railties/lib/rails/application/configuration.rb @@ -93,9 +93,10 @@ module Rails # Loads and returns the entire raw configuration of database from # values stored in `config/database.yml`. def database_configuration - yaml = Pathname.new(paths["config/database"].existent.first || "") + path = paths["config/database"].existent.first + yaml = Pathname.new(path) if path - config = if yaml.exist? + config = if yaml && yaml.exist? require "yaml" require "erb" YAML.load(ERB.new(yaml.read).result) || {} @@ -104,7 +105,7 @@ module Rails # by Active Record. {} else - raise "Could not load database configuration. No such file - #{yaml}" + raise "Could not load database configuration. No such file - #{paths["config/database"].instance_variable_get(:@paths)}" end config |