Sha256: 978b40b881a00c8d72aa88ce2cd9f045688d998df4a7d12bed32ad9395e1521a

Contents?: true

Size: 1.08 KB

Versions: 22

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require "active_support/core_ext/module/delegation"

module Rails
  class Application
    class RoutesReloader
      attr_reader :route_sets, :paths
      attr_accessor :eager_load
      delegate :execute_if_updated, :execute, :updated?, to: :updater

      def initialize
        @paths      = []
        @route_sets = []
        @eager_load = false
      end

      def reload!
        clear!
        load_paths
        finalize!
        route_sets.each(&:eager_load!) if eager_load
      ensure
        revert
      end

    private
      def updater
        @updater ||= ActiveSupport::FileUpdateChecker.new(paths) { reload! }
      end

      def clear!
        route_sets.each do |routes|
          routes.disable_clear_and_finalize = true
          routes.clear!
        end
      end

      def load_paths
        paths.each { |path| load(path) }
      end

      def finalize!
        route_sets.each(&:finalize!)
      end

      def revert
        route_sets.each do |routes|
          routes.disable_clear_and_finalize = false
        end
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
railties-6.0.6.1 lib/rails/application/routes_reloader.rb
railties-6.0.6 lib/rails/application/routes_reloader.rb
railties-6.0.5.1 lib/rails/application/routes_reloader.rb
railties-6.0.5 lib/rails/application/routes_reloader.rb
railties-6.0.4.8 lib/rails/application/routes_reloader.rb
railties-6.0.4.7 lib/rails/application/routes_reloader.rb
railties-6.0.4.6 lib/rails/application/routes_reloader.rb
railties-6.0.4.5 lib/rails/application/routes_reloader.rb
railties-6.0.4.4 lib/rails/application/routes_reloader.rb
railties-6.0.4.3 lib/rails/application/routes_reloader.rb
railties-6.0.4.2 lib/rails/application/routes_reloader.rb
railties-6.0.4.1 lib/rails/application/routes_reloader.rb
railties-6.0.4 lib/rails/application/routes_reloader.rb
railties-6.0.3.7 lib/rails/application/routes_reloader.rb
railties-6.0.3.6 lib/rails/application/routes_reloader.rb
railties-6.0.3.5 lib/rails/application/routes_reloader.rb
railties-6.0.3.4 lib/rails/application/routes_reloader.rb
railties-6.0.3.3 lib/rails/application/routes_reloader.rb
railties-6.0.3.2 lib/rails/application/routes_reloader.rb
railties-6.0.3.1 lib/rails/application/routes_reloader.rb