From 0450547b663bb6868ea96117eb0b5507cb68357f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 19 Jan 2013 14:44:26 +0000 Subject: [PATCH] Don't abort when database.yml is not present. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11202 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index c6ffb92f6..02ef13638 100644 --- a/Gemfile +++ b/Gemfile @@ -61,10 +61,10 @@ if File.exist?(database_file) end end else - abort("No adapter found in config/database.yml, please configure it first") + warn("No adapter found in config/database.yml, please configure it first") end else - abort("Please configure your config/database.yml first") + warn("Please configure your config/database.yml first") end group :development do