method
build_db_config_from_hash
v7.0.0 -
Show latest stable
- Class:
ActiveRecord::DatabaseConfigurations
build_db_config_from_hash(env_name, name, config)private
No documentation available.
# File activerecord/lib/active_record/database_configurations.rb, line 221
def build_db_config_from_hash(env_name, name, config)
if config.has_key?(:url)
url = config[:url]
config_without_url = config.dup
config_without_url.delete :url
UrlConfig.new(env_name, name, url, config_without_url)
else
HashConfig.new(env_name, name, config)
end
end