class ActiveRecord::Migration::CheckPending

loading a web page if config.active_record.migration_error is set to :page_load.
This class is used to verify that all migrations have been run before

def build_watcher(&block)

def build_watcher(&block)
  paths = Array(connection.migration_context.migrations_paths)
  @file_watcher.new([], paths.index_with(["rb"]), &block)
end

def call(env)

def call(env)
  @mutex.synchronize do
    @watcher ||= build_watcher do
      @needs_check = true
      ActiveRecord::Migration.check_pending!(connection)
      @needs_check = false
    end
    if @needs_check
      @watcher.execute
    else
      @watcher.execute_if_updated
    end
  end
  @app.call(env)
end

def connection

def connection
  ActiveRecord::Base.connection
end

def initialize(app, file_watcher: ActiveSupport::FileUpdateChecker)

def initialize(app, file_watcher: ActiveSupport::FileUpdateChecker)
  @app = app
  @needs_check = true
  @mutex = Mutex.new
  @file_watcher = file_watcher
end