method
process
v2.1.0 -
Show latest stable
- Class:
Rails::Initializer
process()public
Sequentially step through all of the available initialization routines, in order (view execution order in source).
# File railties/lib/initializer.rb, line 106
def process
Rails.configuration = configuration
check_ruby_version
install_gem_spec_stubs
set_load_path
require_frameworks
set_autoload_paths
add_gem_load_paths
add_plugin_load_paths
load_environment
initialize_encoding
initialize_database
initialize_cache
initialize_framework_caches
initialize_logger
initialize_framework_logging
initialize_framework_views
initialize_dependency_mechanism
initialize_whiny_nils
initialize_temporary_session_directory
initialize_time_zone
initialize_framework_settings
add_support_load_paths
load_gems
load_plugins
# pick up any gems that plugins depend on
add_gem_load_paths
load_gems
check_gem_dependencies
load_application_initializers
# the framework is now fully initialized
after_initialize
# Prepare dispatcher callbacks and run 'prepare' callbacks
prepare_dispatcher
# Routing must be initialized after plugins to allow the former to extend the routes
initialize_routing
# Observers are loaded after plugins in case Observers or observed models are modified by plugins.
load_observers
end Related methods
- Instance methods
- add_gem_load_paths
- add_plugin_load_paths
- add_support_load_paths
- after_initialize
- check_gem_dependencies
- check_ruby_version
- initialize_cache
- initialize_database
- initialize_dependency_mechanism
- initialize_encoding
- initialize_framework_caches
- initialize_framework_logging
- initialize_framework_settings
- initialize_framework_views
- initialize_logger
- initialize_routing
- initialize_temporary_session_directory
- initialize_time_zone
- initialize_whiny_nils
- install_gem_spec_stubs
- load_application_initializers
- load_environment
- load_gems
- load_observers
- load_plugins
- plugin_loader
- prepare_dispatcher
- process
- require_frameworks
- set_autoload_paths
- set_load_path
- Class methods
- new
- run