Skip to content

Commit

Permalink
Merge pull request #9629 from wangjohn/numbering_of_applicationrb_is_off
Browse files Browse the repository at this point in the history
Renumbering the comments in the application boot process.
  • Loading branch information
steveklabnik committed Mar 9, 2013
2 parents afd3ade + ff25b0e commit c614b76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions railties/lib/rails/application.rb
Expand Up @@ -46,10 +46,10 @@ module Rails
# 6) Run config.before_initialize callbacks # 6) Run config.before_initialize callbacks
# 7) Run Railtie#initializer defined by railties, engines and application. # 7) Run Railtie#initializer defined by railties, engines and application.
# One by one, each engine sets up its load paths, routes and runs its config/initializers/* files. # One by one, each engine sets up its load paths, routes and runs its config/initializers/* files.
# 9) Custom Railtie#initializers added by railties, engines and applications are executed # 8) Custom Railtie#initializers added by railties, engines and applications are executed
# 10) Build the middleware stack and run to_prepare callbacks # 9) Build the middleware stack and run to_prepare callbacks
# 11) Run config.before_eager_load and eager_load! if eager_load is true # 10) Run config.before_eager_load and eager_load! if eager_load is true
# 12) Run config.after_initialize callbacks # 11) Run config.after_initialize callbacks
# #
class Application < Engine class Application < Engine
autoload :Bootstrap, 'rails/application/bootstrap' autoload :Bootstrap, 'rails/application/bootstrap'
Expand Down

0 comments on commit c614b76

Please sign in to comment.