aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/railtie.rb
blob: 335daafc01a594ba9b6503231fb5ccd4c9ba74ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "action_dispatch"
require "rails"

module ActionDispatch
  class Railtie < Rails::Railtie
    railtie_name :action_dispatch

    # Prepare dispatcher callbacks and run 'prepare' callbacks
    initializer "action_dispatch.prepare_dispatcher" do |app|
      # TODO: This used to say unless defined?(Dispatcher). Find out why and fix.
      require 'rails/dispatcher'
      ActionDispatch::Callbacks.to_prepare { app.routes_reloader.reload_if_changed }
    end
  end
end