]> git.openstreetmap.org Git - rails.git/commitdiff
Move application.yml check to config initializer
authorTom Hughes <tom@compton.nu>
Sun, 17 Mar 2019 10:49:21 +0000 (10:49 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 17 Mar 2019 11:15:34 +0000 (11:15 +0000)
config/application.rb
config/initializers/config.rb

index a8a13c476466b4b1ea592991aa2de98787349513..3b470bacc5fc2759da6258fc3dd3badaffc26775 100644 (file)
@@ -1,18 +1,5 @@
 require_relative "boot"
 
 require_relative "boot"
 
-# Guard against deployments with old-style application.yml configurations
-# Otherwise, admins might not be aware that they are now silently ignored
-# and major problems could occur
-# rubocop:disable Rails/Output, Rails/Exit
-if File.exist?(File.expand_path("application.yml", __dir__))
-  puts "The config/application.yml file is no longer supported"
-  puts "Default settings are now found in config/settings.yml and you can override these in config/settings.local.yml"
-  puts "To prevent unexpected behaviour, please copy any custom settings to config/settings.local.yml"
-  puts " and then remove your config/application.yml file."
-  exit!
-end
-# rubocop:enable Rails/Output, Rails/Exit
-
 if ENV["OPENSTREETMAP_STATUS"] == "database_offline"
   require "active_model/railtie"
   require "active_job/railtie"
 if ENV["OPENSTREETMAP_STATUS"] == "database_offline"
   require "active_model/railtie"
   require "active_job/railtie"
index 80997e0dc90ac455f018fcf88bc7603cf09141ad..f7d5d79249eb43243caabc463273871e98bee8b6 100644 (file)
@@ -1,3 +1,20 @@
+# Guard against deployments with old-style application.yml configurations
+# Otherwise, admins might not be aware that they are now silently ignored
+# and major problems could occur
+# rubocop:disable Rails/Output, Rails/Exit
+if File.exist?(Rails.root.join("config", "application.yml"))
+  puts "The config/application.yml file is no longer supported."
+  puts ""
+  puts "Default settings are now found in config/settings.yml and you"
+  puts "can override these in config/settings.local.yml."
+  puts ""
+  puts "To prevent unexpected behaviour, please copy any custom"
+  puts "settings to config/settings.local.yml and then remove"
+  puts "your config/application.yml file."
+  exit!
+end
+# rubocop:enable Rails/Output, Rails/Exit
+
 # Allowed status values
 ALLOWED_STATUS ||= [
   "online",            # online and operating normally
 # Allowed status values
 ALLOWED_STATUS ||= [
   "online",            # online and operating normally