Monkey patching, not required.

This commit is contained in:
Sam 2014-05-14 10:20:23 +10:00
parent 42c67f719b
commit 1aa200788c

View file

@ -11,22 +11,15 @@ if defined?(Bundler)
Bundler.require(*Rails.groups(assets: %w(development test profile)))
end
# PATCH DB configuration
class Rails::Application::Configuration
def database_configuration_with_global_config
module Discourse
class Application < Rails::Application
def config.database_configuration
if Rails.env == "production"
GlobalSetting.database_config
else
database_configuration_without_global_config
super
end
end
alias_method_chain :database_configuration, :global_config
end
module Discourse
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.