mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
83a3df0136
This will allow users to take advantage early of Ruby 3.1 optimization in string interpolation.
97 lines
3.6 KiB
Ruby
97 lines
3.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "fileutils"
|
|
require "active_support/notifications"
|
|
require "active_support/dependencies"
|
|
require "active_support/descendants_tracker"
|
|
require "rails/secrets"
|
|
|
|
module Rails
|
|
class Application
|
|
module Bootstrap
|
|
include Initializable
|
|
|
|
initializer :load_environment_hook, group: :all do end
|
|
|
|
initializer :load_active_support, group: :all do
|
|
ENV["RAILS_DISABLE_DEPRECATED_TO_S_CONVERSION"] = "true" if config.active_support.disable_to_s_conversion
|
|
require "active_support/all" unless config.active_support.bare
|
|
end
|
|
|
|
initializer :set_eager_load, group: :all do
|
|
if config.eager_load.nil?
|
|
warn <<~INFO
|
|
config.eager_load is set to nil. Please update your config/environments/*.rb files accordingly:
|
|
|
|
* development - set it to false
|
|
* test - set it to false (unless you use a tool that preloads your test environment)
|
|
* production - set it to true
|
|
|
|
INFO
|
|
config.eager_load = config.cache_classes
|
|
end
|
|
end
|
|
|
|
# Initialize the logger early in the stack in case we need to log some deprecation.
|
|
initializer :initialize_logger, group: :all do
|
|
Rails.logger ||= config.logger || begin
|
|
logger = ActiveSupport::Logger.new(config.default_log_file)
|
|
logger.formatter = config.log_formatter
|
|
logger = ActiveSupport::TaggedLogging.new(logger)
|
|
logger
|
|
rescue StandardError
|
|
path = config.paths["log"].first
|
|
logger = ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDERR))
|
|
logger.level = ActiveSupport::Logger::WARN
|
|
logger.warn(
|
|
"Rails Error: Unable to access log file. Please ensure that #{path} exists and is writable " \
|
|
"(i.e. make it writable for user and group: chmod 0664 #{path}). " \
|
|
"The log level has been raised to WARN and the output directed to STDERR until the problem is fixed."
|
|
)
|
|
logger
|
|
end
|
|
Rails.logger.level = ActiveSupport::Logger.const_get(config.log_level.to_s.upcase)
|
|
|
|
unless config.consider_all_requests_local
|
|
Rails.error.logger = Rails.logger
|
|
end
|
|
end
|
|
|
|
# Initialize cache early in the stack so railties can make use of it.
|
|
initializer :initialize_cache, group: :all do
|
|
unless Rails.cache
|
|
Rails.cache = ActiveSupport::Cache.lookup_store(*config.cache_store)
|
|
|
|
if Rails.cache.respond_to?(:middleware)
|
|
config.middleware.insert_before(::Rack::Runtime, Rails.cache.middleware)
|
|
end
|
|
end
|
|
end
|
|
|
|
# We setup the once autoloader this early so that engines and applications
|
|
# are able to autoload from these paths during initialization.
|
|
initializer :setup_once_autoloader, after: :set_eager_load_paths, before: :bootstrap_hook do
|
|
autoloader = Rails.autoloaders.once
|
|
|
|
ActiveSupport::Dependencies.autoload_once_paths.freeze
|
|
ActiveSupport::Dependencies.autoload_once_paths.uniq.each do |path|
|
|
# Zeitwerk only accepts existing directories in `push_dir`.
|
|
next unless File.directory?(path)
|
|
|
|
autoloader.push_dir(path)
|
|
autoloader.do_not_eager_load(path) unless ActiveSupport::Dependencies.eager_load?(path)
|
|
end
|
|
|
|
autoloader.setup
|
|
end
|
|
|
|
initializer :bootstrap_hook, group: :all do |app|
|
|
ActiveSupport.run_load_hooks(:before_initialize, app)
|
|
end
|
|
|
|
initializer :set_secrets_root, group: :all do
|
|
Rails::Secrets.root = root
|
|
end
|
|
end
|
|
end
|
|
end
|